/* --- ASSETS/CSS/STYLE.CSS --- */

/* 1. FONTS & BRAND COLORS (MATCHING YOUR LOGO) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --brand-yellow: #FFC107; /* The Yellow from your logo */
    --brand-black: #000000;  /* The Black from your logo */
    --text-grey: #444444;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-grey);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-black);
    font-weight: 700;
}

/* 2. NAVIGATION BAR */

/* 1. Make the white bar stay THIN */
.navbar {
    height: 80px;            /* Locks the white bar height */
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;      /* Needed for the logo to stick */
    z-index: 1000;           /* Keeps bar on top */
}

/* 2. Make the Logo BIG and FLOAT */
.navbar-brand img {
    height: 210px;           /* Size of the logo (Change this to make bigger/smaller) */
    /* position: absolute;      THIS IS KEY: Detaches logo from the bar */
    top: 0;                  /* Sticks it to the top */
    left: 15px;              /* Adjusts spacing from left */
    z-index: 1001;           /* Ensures logo sits on top of everything */
    
    /* Optional: Makes it look like a badge */
    /* background: white; */
    /* padding: 10px 15px; */
    /* border-radius: 0 0 15px 15px; */
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.15); */
}

/* 3. Mobile Fix (Keep it normal on phone) */
@media (max-width: 991px) {
    .navbar {
        height: auto;        /* Let bar grow automatically on phone */
    }
    .navbar-brand img {
        position: static;    /* Put logo back inside the bar on phone */
        height: 60px;        /* Smaller size for mobile */
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
}

.nav-link {
    font-weight: 700;
    color: var(--brand-black) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    letter-spacing: 0.5px;
}

.btn-brand {
    background-color: var(--brand-yellow);
    color: var(--brand-black) !important;
    font-weight: 800;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: var(--brand-black);
    color: var(--brand-yellow) !important;
}

/* 3. HERO SECTION */
.hero-giant {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-giant h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* 4. SECTIONS & GRIDS */
.section-padding { padding: 80px 0; }

.service-card {
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s;
    text-align: center;
}
.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 5px solid var(--brand-yellow);
}
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* 5. CALCULATOR BOX */
.calc-teaser {
    background: var(--brand-black);
    color: white;
    padding: 50px;
    border-radius: 10px;
    margin-top: -80px; /* Overlaps hero */
    position: relative;
    z-index: 10;
}

/* 6. WHATSAPP & FOOTER */
.whatsapp-float {
    position: fixed;
    bottom: 30px; 
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

footer {
    background: var(--brand-black);
    color: #999;
    padding: 60px 0;
}
footer h5 { color: white; margin-bottom: 20px; }
footer a { color: #999; text-decoration: none; }
footer a:hover { color: var(--brand-yellow); }
/* ADD THIS TO BOTTOM OF STYLE.CSS */

.lead-container {
    position: relative;
    z-index: 50; 
    margin-top: -80px; /* This pulls the box UP over the image */
}

/* Mobile Fix: On small screens, don't overlap, just stack it */
@media (max-width: 991px) {
    .lead-container {
        margin-top: 20px;
    }
}