*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
/* background:#f8f7f5; */
background:#fff;
color:#2b2b2b;
}

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

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

/* ===== NAVBAR ===== */

.navbar {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar.menu-open {
    opacity: 0;
    visibility: hidden;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== DESKTOP MENU ===== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 100px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 100px;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #7b4a2d;
}

/* ===== LOGO ===== */

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 55px;
    display: block;
}

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1002;                /* higher than mobile-menu's 999 */
    position: relative;           /* z-index needs position to work on a button */
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #222;
    display: block;
    transition: 0.3s;
}

/* Hamburger → X animation */

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;             /* ← add this */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;           /* tighter top */
    border-bottom: 1px solid #eee;
    margin-top: 0;                /* explicit reset */
}

.mobile-menu-header img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0;                    /* kill any inherited margin */
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    height: 70px;
    width: auto;
    display: block;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links a {
    display: block;
    padding: 22px 35px;
    color: #222;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.mobile-menu-links a:hover {
    background: #faf8f6;
}

/* ===== MOBILE BREAKPOINT ===== */

@media (max-width: 991px) {

    .nav-menu {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
        margin-right: auto;
        margin-top: 0;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        height: 42px;
    }

    .hamburger {
        display: flex;
    }
}

/* ===== BODY ===== */

body {
    padding-top: 120px; /* matches nav-container height */
}

body.menu-open {
    overflow: hidden;
}

/* HERO */

.hero{
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* Modern mobile browsers */
    overflow: hidden;
}

.hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity 0.8s ease;
}

.hero-content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: rgba(0,0,0,0.20);
    z-index: 2;
}

.hero h1{
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
    text-shadow:
        0 2px 10px rgba(0,0,0,.5),
        0 6px 30px rgba(0,0,0,.4);
    max-width: 900px;
    margin: 0 auto;
}

/* MOBILE */

@media (max-width: 991px){

    .hero{
        min-height: 100svh;
    }

    .hero h1{
        font-size: clamp(2rem, 8vw, 3rem);
    }

}
/* STYLE SECTION */

.style-section {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.style-content h2 {
  font-size: 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  margin-bottom: 30px;
}

.style-content p {
line-height: 2;
font-size: 1.2rem;
  color: #6b4a35;
}

/* BEFORE/AFTER SLIDER */

.slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: col-resize;
  user-select: none;
}

.img-base,
.img-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-overlay {
  clip-path: inset(0 50% 0 0);
}

.divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
}

.divider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* .label {
  position: absolute;
  bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.82);
  padding: 4px 10px;
  border-radius: 2px;
  color: #3a2a1a;
}

.label-old { left: 12px; }
.label-new { right: 12px; } */

/* ================= ARRIVALS ================= */

.arrival{
    padding:120px 8%;
    overflow:hidden;
}

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:clamp(3rem,6vw,6rem);
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
    color:#2b2b2b;
    margin:0;
}

.heading-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.view-all-btn{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:500;
    padding:12px 28px;
    border:1px solid #ddd;
    border-radius:999px;
    background:#fff;
    transition:.3s ease;
}

.view-all-btn:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

.slider-controls{
    display:flex;
    gap:12px;
}

.slider-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    cursor:pointer;
    font-size:20px;
    transition:.3s;
}

.slider-btn:hover{
    transform:translateY(-2px);
}
/* Slider */

.product-grid{
    display:flex;
    gap:28px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.product-grid::-webkit-scrollbar{
    display:none;
}
/* Card */
.product-card{
    flex: 0 0 260px;
    max-width: 260px;
}

.product-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    border-radius: 8px;
}

.product-card:hover img{
    transform: scale(1.03);
}

.product-card h3{
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.product-card span{
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 14px;
}

/* Mobile */
@media(max-width:768px){

    .section-heading{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .heading-actions{
        width:100%;
        justify-content:space-between;
    }

    .slider-btn{
        width:48px;
        height:48px;
    }
}

/* ABOUT */

.about{
padding:120px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
align-items:center;
}

.about h2{
font-size:4rem;
font-family:'Cormorant Garamond',serif;
margin-bottom:30px;
}

.about p{
line-height:2;
font-size:1.2rem;
  /* color: #6b4a35; */
  color :rgb(76, 75, 75)
}

/* VIDEO */

.video-section{
position:relative;
height: 80vh;
overflow:hidden;
}

.video-section video{
width:100%;
height:100%;
object-fit:cover;
}

.video-overlay{
position:absolute;
inset:0;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
    background: rgba(0,0,0,0.20);

}

.video-overlay h2{
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    text-shadow:
        0 2px 10px rgba(0,0,0,.5),
        0 6px 30px rgba(0,0,0,.4);
    max-width: 900px;
    margin: 0 auto;
}

/* FOOTER */

footer{
padding:100px 8% 40px;
}

.footer-links{
display:flex;
justify-content:space-between;
gap:80px;
}

.footer-links div:first-child{
display:flex;
flex-direction:column;
gap:20px;
}

.footer-links a{
font-size:2rem;
font-family:'Cormorant Garamond',serif;
}

.newsletter h3{
font-size:2rem;
font-family:'Cormorant Garamond',serif;
margin-bottom:30px;
color:#6b3d20;
}

.newsletter form{
display:flex;
border-bottom:1px solid #ccc;
padding-bottom:15px;
}

.newsletter input{
border:none;
background:none;
outline:none;
width:300px;
}

.newsletter button{
border:none;
background:none;
font-size:30px;
cursor:pointer;
}

.footer-bottom{
margin-top:60px;
padding-top:25px;
border-top:1px solid #ddd;
display:flex;
justify-content:space-between;
}

/* MOBILE */

.mobile-menu{
position:fixed;
top:120px;
left:-100%;
width:100%;
background:white;
padding:40px;
display:flex;
flex-direction:column;
gap:25px;
transition:.4s;
z-index:1000;
}

.mobile-menu.active{
left:0;
}

@media(max-width:991px){

.nav-left{
display:none;
}

.menu-toggle{
display:block;
font-size:28px;
background:none;
border:none;
cursor:pointer;
}

.hero h1{
font-size:3rem;
}

.style-section,
.about{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-links{
flex-direction:column;
}

.footer-links a{
font-size:2rem;
}
}

@media(max-width:576px){

.navbar{
padding:0 20px;
}

.logo{
width:90px;
height:90px;
}

.hero{
height:70vh;
}

.hero h1{
font-size:2.2rem;
}

.section-heading h2,
.about h2,
.style-content h2{
font-size:3rem;
}

.product-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:15px;
}
}


/* contact page */
/* ================= CONTACT ================= */

.contact-section{
    background:#fff;
    padding:100px 20px 120px;
}

.contact-heading{
    text-align:center;
    margin-bottom:60px;
}

.heading-line{
    width:150px;
    height:40px;
    background:#4a1900;
    margin:0 auto 25px;
}

.contact-heading h2{
    font-family:'Cormorant Garamond', serif;
    font-size:110px;
    font-weight:400;
    line-height:1;
    color:#3c1400;
    margin:0;
}

.contact-form{
    max-width:1000px;
    margin:0 auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:22px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #d9d9d9;
    background:#fff;
    padding:0 30px;
    font-size:16px;
    color:#333;
    font-family:'Cormorant Garamond', serif;
    box-sizing:border-box;
    outline:none;
}

.contact-form input{
    height:80px;
}

.contact-form input[type="tel"]{
    margin-bottom:22px;
}

.contact-form textarea{
    height:340px;
    resize:none;
    padding-top:28px;
    margin-bottom:30px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#444;
    opacity:1;
}

.contact-form button{
    width:130px;
    height:76px;
    border:none;
    background:#000;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    letter-spacing:.5px;
    transition:.3s;
}

.contact-form button:hover{
    background:#222;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

    .contact-section{
        padding:70px 20px 90px;
    }

    .contact-heading h2{
        font-size:65px;
    }

    .heading-line{
        width:110px;
        height:30px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:18px;
    }

    .contact-form input{
        height:65px;
    }

    .contact-form textarea{
        height:250px;
    }

    .contact-form button{
        width:100%;
        height:65px;
    }
}