/* =========================================
   RESET CSS
========================================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #f8f6f2;
    color: #222;
    line-height: 1.7;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}


/* =========================================
   GLOBAL
========================================= */
.container{
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

.section-subtitle{
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b7d65;
    margin-bottom: 15px;
}

.section-heading{
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2{
    font-size: 52px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #1d1d1d;
}


/* =========================================
   HEADER
========================================= */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 24px 0;
    transition: 0.4s ease;
}

.header.scrolled{
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    padding: 16px 0;
}

.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a{
    font-size: 28px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 4px;
    font-weight: 700;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a{
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
    position: relative;
}

.nav-links li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.3s ease;
}

.nav-links li a:hover::after{
    width: 100%;
}


/* =========================================
   MOBILE MENU
========================================= */
.menu-toggle{
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}


/* =========================================
   BUTTON
========================================= */
.hero-button,
.living-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.4s ease;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-button:hover{
    background: #fff;
    color: #000;
}

.living-button{
    border: 1px solid #222;
    color: #222;
    margin-top: 25px;
}

.living-button:hover{
    background: #222;
    color: #fff;
}


/* =========================================
   FOOTER
========================================= */
.footer{
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo{
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 5px;
}

.footer-text p{
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
}


/* =========================================
   FADE ANIMATION
========================================= */
.fade-up{
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.show{
    opacity: 1;
    transform: translateY(0);
}
/* =========================================
   SMOOTH SCROLL EXPERIENCE
========================================= */

body{
    overflow-x: hidden;
}


/* =========================================
   IMAGE HOVER EFFECT
========================================= */

.image-hover{
    overflow: hidden;
}

.image-hover img{
    transition: 0.8s ease;
}

.image-hover:hover img{
    transform: scale(1.08);
}


/* =========================================
   TEXT EFFECT
========================================= */

.text-fade{
    opacity: 0.85;
    transition: 0.3s ease;
}

.text-fade:hover{
    opacity: 1;
}


/* =========================================
   SECTION SPACING
========================================= */

.section-spacing{
    padding: 140px 0;
}


/* =========================================
   BACKGROUND LIGHT
========================================= */

.bg-light{
    background: #f8f6f2;
}


/* =========================================
   BACKGROUND WHITE
========================================= */

.bg-white{
    background: #fff;
}


/* =========================================
   OVERLAY CARD
========================================= */

.overlay-card{
    position: relative;
    overflow: hidden;
}

.overlay-card img{
    transition: 0.6s ease;
}

.overlay-card:hover img{
    transform: scale(1.05);
}

.overlay-content{
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    padding: 40px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        transparent
    );

    color: #fff;
}

.overlay-content h3{
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.overlay-content p{
    color: rgba(255,255,255,0.85);
}
/* =========================================
   WEATHER WIDGET
========================================= */

.weather-widget{
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    border-radius: 40px;

    color: #fff;

    font-size: 13px;

    letter-spacing: 0.5px;
}

.weather-location{
    font-weight: 500;
}

.weather-temp{
    font-size: 18px;
    font-weight: 600;
}

.weather-status{
    opacity: 0.8;
}
@media(max-width: 768px){

    .weather-widget{
        display: none;
    }

}
/* =========================================
   WEATHER WIDGET PREMIUM
========================================= */

.weather-widget{
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 10px 18px;

    border-radius: 40px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(12px);

    color: #fff;

    transition: 0.5s ease;
}

.weather-icon{
    font-size: 28px;
    animation: floatWeather 3s ease infinite;
}

.weather-info{
    display: flex;
    flex-direction: column;
}

.weather-location{
    font-size: 13px;
    letter-spacing: 1px;
}

.weather-meta{
    display: flex;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}


/* =========================================
   WEATHER STATES
========================================= */

.weather-sunny{
    background: rgba(255, 190, 60, 0.15);
}

.weather-cloudy{
    background: rgba(180, 190, 210, 0.15);
}

.weather-rainy{
    background: rgba(80, 120, 180, 0.2);
}


/* =========================================
   DAY / NIGHT
========================================= */

body.day-mode .header{
    background: rgba(255,255,255,0.08);
}

body.night-mode .header{
    background: rgba(10,15,25,0.75);
}


/* =========================================
   WEATHER ANIMATION
========================================= */

@keyframes floatWeather{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-4px);
    }

    100%{
        transform: translateY(0px);
    }

}
/* =========================================
   HEADER SCROLL STATE
========================================= */

header.scrolled{

    background: rgba(255,255,255,0.88);

    border-bottom: 1px solid rgba(0,0,0,0.05);

    box-shadow: 0 4px 30px rgba(0,0,0,0.04);

}

/* LOGO */
.header.scrolled .logo{
    color: #222;
}


/* MENU */
.header.scrolled .nav-menu a{
    color: #222;
}


/* WEATHER */
.header.scrolled .weather-widget{
    color: #222;

    border: 1px solid rgba(0,0,0,0.08);

    background: rgba(0,0,0,0.03);
}


/* MOBILE MENU */
.header.scrolled .menu-toggle{
    color: #222;
}
/* =========================================
   HEADER SCROLL COLOR
========================================= */

.header.scrolled{
    background: rgba(255,255,255,0.96);
}


/* LOGO */
.header.scrolled .logo a{
    color: #111 !important;
}


/* MENU */
.header.scrolled .nav-links a{
    color: #111 !important;
}


/* WEATHER */
.header.scrolled .weather-widget{
    color: #111 !important;

    background: rgba(0,0,0,0.04);

    border: 1px solid rgba(0,0,0,0.08);
}


/* MOBILE */
.header.scrolled .menu-toggle{
    color: #111 !important;
}
/* =========================================
   CONTACT HERO
========================================= */

.contact-hero{

    height: 70vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.4),
            rgba(0,0,0,0.4)
        ),
        url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: #fff;

    text-align: center;

}

.contact-hero-content{
    max-width: 700px;
    margin: auto;
}

.contact-hero-content h1{

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 100px;

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -2px;

    color: #fff;

    margin-bottom: 24px;

}

.contact-hero-content p{

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================
   TEAM SECTION
========================================= */

.team-section{
    padding: 120px 0;
}


.team-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 32px;

}


/* CARD */

.team-card{

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 4px 14px rgba(0,0,0,0.06);

    transition: 0.35s ease;

}

.team-card:hover{

    transform: translateY(-8px);

}


/* IMAGE */

.team-image{
    overflow: hidden;
}

.team-image img{

    width: 100%;

    height: 360px;

    object-fit: cover;

    transition: 0.5s ease;

}

.team-card:hover img{

    transform: scale(1.03);

}


/* CONTENT */

.team-content{

    padding: 28px;

    text-align: center;

}

.team-content h3{

    font-size: 26px;

    margin-bottom: 10px;

}

.team-content span{

    display: block;

    margin-bottom: 18px;

    color: #888;

}

.team-content p{

    line-height: 1.7;

    opacity: 0.72;

}