@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
    --bg-color: #fdfcf7;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --accent-color: #000;
    --border-color: #e0e0e0;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--body-font);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}
#formMessage {
  transition: 0.3s ease;
}

/* Header */
header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    /* background: rgba(253, 252, 247, 0.8);
    backdrop-filter: blur(10px); */
    z-index: 1000;
    width: 100%;
    color: #fff;

}

header {
    transition: background 0.4s ease, padding 0.3s ease;
}

header.scrolled {

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: #fff;
    padding: 15px 40px;
}

.logo {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    width: calc(100% - 60px);
    float: left;
    padding: 15px;
    text-align: right;
}

nav ul {
    display: flex;
    gap: 40px;
    float: inline-end;
}

nav ul li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    color: #ecc662;
}

nav ul li a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.explore-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 40px;
}

.explore-btn:hover {
    background: var(--text-primary);
    color: #fff;
}

.hero-meta {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.meta-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.meta-item p {
    font-size: 12px;
    opacity: 0.6;
    max-width: 150px;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-images .main-img {
    width: 100%;
}

.hero-images .side-info {
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 250px;
    text-align: right;
}

.side-info h4 {
    margin-bottom: 15px;
}

.side-info p {
    font-size: 13px;
    opacity: 0.7;
}

/* Product Section */
.product-showcase {
    padding: 130px 0 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0px;
}

/* .product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse .product-info {
    direction: ltr;
} */

.product-info h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 15px;
}

.size-selection {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.size-item {
    font-size: 13px;
    opacity: 0.6;
    cursor: pointer;
}

.purchase-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.add-to-cart {
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: #000;
}

.price {
    font-size: 24px;
    font-family: var(--heading-font);
}


/* Collections Grid Section (The 3-block layout) */
.collections-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
}

.collection-images {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 40px;
}

.collection-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.collection-block.center {
    direction: rtl;
}

.collection-block.center .col-info {
    direction: ltr;
}

.col-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.col-info p {
    font-size: 14px;
    opacity: 0.7;
}

.go-to-shop {
    margin-top: 30px;
    display: inline-block;
    padding: 12px 30px;
    background: #2a2a2a;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-section {
    padding: 130px 0 0 0;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 60px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 40px;
    margin-bottom: 30px;
    color: #ccc;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    opacity: 0.5;
}

/* Trusted Logos */
.trusted-logos {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1);
}



/* Home Banner Interactive Layered Layout */
.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
     background: linear-gradient(to right, #2f2f2f 0%, #212121 25%, #0c0c0c 50%, #000000 75%, #000000 100%);
   
}

.banner-layers {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.layer-bg {
    z-index: 1;
    transform: scale(1.1);
    /* Slightly larger for parallax wiggle room */
}

.layer-text {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0px;
    /* Offset to sit behind the model */
    color: #876038;
}

.brand-top {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-bottom: -1rem;
    margin-left: 0.5rem;
}

.brand-main {
    font-family: var(--heading-font);
    font-size: 15vw;
    font-weight: 400;
    line-height: 0.8;
    margin: 0;
}

.layer-model {
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: auto;
    /* Catch mouse events for interaction */
}

.layer-model img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

 /* Animation Classes */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    .reveal-active {
      opacity: 1;
      transform: translateY(0);
    }

     .contact-section .form-group {
  margin-bottom: 15px;
}

.contact-section input,
.contact-section textarea {
      width: 100%;
    padding: 10px;
    border: 1px solid #c9be9f;
    border-radius: 0px;
    font-size: 14px;
    background: #fdfcf7;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: #c9a14a;
  background: #fff;
}

#formMessage {
  font-size: 14px;
  font-weight: 500;
}

/* PRODUCT SLIDER */
.product-slider {
  padding-bottom:0px;
  position: relative;
}


.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-bottom: 60px;
  padding-top: 20px;
  gap: 20px;
}


.product-card {
  min-width: 300px;
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-radius: 10px;
  transition: 0.3s ease;
  flex: 0 0 33.333%; /* 3 items desktop */
  padding: 20px;
  box-sizing: border-box;
  justify-content: center;
    display: grid;
}
.product-card img{padding: 30px;}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card p {
  font-weight: 600;
  color: #876038;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
    height: 1px;
    border-radius: 10px;
    background: #ecc662;
}
.menu-toggle span:first-child {
    width: 20px;
}
.menu-toggle span:nth-child(2) {
    width: 15px;
}
.menu-toggle span:last-child {
    width: 20px;
}


/* COLLECTIONS HEADER */
.collections-header {
  position: relative;
  background-image: url("../img/shop.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 500px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Black Overlay 50% */
.collections-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Centered Heading */
.collections-header h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 70px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s ease;
}

/* Luxury Hover Effect */
.collections-header:hover h2 {
  transform: scale(1.05);
  letter-spacing: 5px;
}

.about-section{
    display:flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 10px;
}
.collection-section{
    padding-top: 90px;
}
.close-menu { display: none;}



.social-links{
    position:absolute; 
    right:40px; 
    bottom:40px; 
    display:flex; 
    flex-direction:column; 
    gap:20px;
    color: #ffffff6b;
    z-index: 9999;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.form-group.left{
    width: calc(50% - 7px);
    float: left;
    margin-right: 7px;
}
.form-group.right{
    width: calc(50% - 7px);
    float: left;
    margin-left: 7px;
}


.contact-info {
  display: flex;
  gap: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e7e6e0;
  border-left: 1px solid #e7e6e0;
}

.contact-card {
  width: 33.33%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-right: 1px solid #e7e6e0;
    border-radius: 0px;
    transition: 0.4s ease;
    float: left;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(135,96,56,0.15);
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #000;
  color: #ecc662;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: #876038;
  color: #fff;
}

.contact-text h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.contact-text p,
.contact-text a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-text a:hover {
  color: #876038;
}
footer{
    padding: 15px 0; 
    text-align: center; 
    border-top: 1px solid var(--border-color); 
    opacity: 0.5; 
    font-size: 12px;
    position: relative;
    float: left;
    width: 100%;
}
@media (max-width: 991px) {
    .product-showcase {
        padding: 130px 0 0px 0;
    }

    .contact-card {
        flex-direction: row;
        padding: 20px;
        width: 100%;
        margin-bottom: 0px;
        border-bottom: 1px solid #e7e6e0;
    }
    .contact-info {
    display: block;
position: relative;
        float: left;}

    .form-group.left{
        width: 100%;
        margin-right: 0px;
    }
    .form-group.right{
        width: 100%;
        margin-left: 0px;
    }
    .hero,
    .product-grid,
    .collections-detail {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .product-grid{
        gap:15px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-images {
        justify-content: center;
    }

    .purchase-actions {
        justify-content: center;
    }

    .explore-btn {
        margin: 0 auto 40px;
    }

    .social-links{
        bottom:240px;
    }
    .collections-header {
        height: 150px;
        border-radius: 0px;
    }

    .collections-header h2 {
        font-size: 28px;
    }
    nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: #000;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }

  nav.active {
    transform: translateX(0);
    display: block;
    z-index:9999;
  }
  nav ul{
    width: 100%;
    float: left;
    text-align: center;
    display: block;
    gap: unset;
  }

  /* Smooth fade for links */
  nav ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s ease;
  }

  nav.active ul li {
    opacity: 1;
    transform: translateX(0);
    padding: 10px;
  }


    .menu-toggle {
        display: flex;
        width: 65px;
        float: right;
        padding: 22px;
    }

    .nav-header {
        position: absolute;
        top: 20px;
        right: 20px;
    }



    .close-menu {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    float: right;
}

.close-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 1px;
    background: #ecc662;
    border-radius: 10px;
    transform-origin: center;
}

.close-menu span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
    .product-card {
        min-width: 80%;
        flex: 0 0 100%; /* 1 item mobile */
        border-radius: 0;
    }
    .slider-track {
        gap: 0px;
        padding-top: 0px;
    }
    .product-slider {
        padding: 0px 0;
    }
    .home-banner {
        height: 100vh;
    }

    .brand-main {
        font-size: 20vw;
    }

    .text-content {
        padding-right: 0;
    }
    .testimonial-text {
        font-size: 14px;
    }
    header {padding: 15px;}
    header.scrolled{padding: 15px;}
    .brand-main{font-size:44px;}

    .layer-model img{
        height: 60%;
        width: 100%;
    }
    
    .layer-text {
        z-index: 2;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        padding-top: 100px;
    }
}