
.logo-area{
display:flex;
align-items:center;
}

.logo{
width:50px;
height:50px;
margin-right:10px;
}

body{

font-family:Arial;
margin:0;
background:#f8f5f0;

}

header{

display:flex;
justify-content:space-between;
padding:15px;
background:white;

}




/* Navbar container */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

header{
background:#f8e6c1;
}

/* Logo section */
.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
width:50px;
height:50px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* Navigation links */
nav{
display:flex;
gap:25px;
}

/* Nav link styling */
nav a{
text-decoration:none;
color:#333;
font-weight:bold;
position:relative;
padding:8px 12px;
transition:0.3s;
border-radius:8px;
}

/* Hover 3D effect */
nav a:hover{
background:#d4af37;
color:white;
transform:translateY(-3px);
box-shadow:0 6px 12px rgba(0,0,0,0.2);
}

/* Animated underline */
nav a::after{
content:"";
position:absolute;
width:0%;
height:3px;
left:0;
bottom:-5px;
background:#d4af37;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

nav a{

margin:10px;
text-decoration:none;
color:#333;

}


/* Full-width Hero */
.hero{
width:100%;
height:500px;
background: #f8c471; /* fallback color */
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
max-width:1200px;
flex-wrap:wrap; /* makes it responsive */
padding:0 20px;
}

/* Text Section */
.hero-text{
flex:1;
min-width:300px;
padding:20px;
text-align:left;
color:white;
}

.hero-text h1{
font-size:3rem;
margin-bottom:20px;
text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-text button{
background: #e67e22;
color:white;
padding:15px 30px;
border:none;
border-radius:50px;
font-size:1rem;
cursor:pointer;
transition:0.3s;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-text button:hover{
background:#d35400;
transform: scale(1.05);
}

/* Image Section */
.hero-image{
flex:1;
min-width:300px;
padding:20px;
position:relative;
overflow:hidden;
}

/* Gradient Overlay */
.image-overlay{
position:relative;
overflow:hidden;
border-radius:15px;
}

.image-overlay img{
width:100%;
border-radius:15px;
z-index:0;
position:relative;
}

.image-overlay::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
z-index:1;
border-radius:15px;
}

/* Image itself */
.hero-image img{
width:100%;
max-width:500px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
transform: translateX(50px);
opacity:0;
animation: slideIn 1.5s forwards ease-out;
z-index:0;
}

/* Slide-in Animation */
@keyframes slideIn{
0%{
transform: translateX(50px);
opacity:0;
}
100%{
transform: translateX(0);
opacity:1;
}
}

/* Responsive */
@media (max-width:900px){
.hero-content{
flex-direction:column;
align-items:center;
text-align:center;
}

.hero-text h1{
font-size:2rem;
}

.hero-image img{
max-width:80%;
}
}

.hero-image img:hover{
transform: scale(1.05);
transition: transform 0.5s;
}

.hero-text h1{
font-family: 'Playfair Display', serif;
}


font-size:


.about{
padding:50px;
text-align:center;
background:#ffffff;
}

.about h2{
color:#d4af37;
margin-bottom:20px;
}

.about p{
max-width:800px;
margin:auto;
line-height:1.6;
color:#444;
}
 
.about{
padding:60px 20px;
background:#f8f5f0;
display:flex;
justify-content:center;
}

.about-card{
background:white;
padding:40px;
max-width:900px;
border-radius:20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
transform-style: preserve-3d;
transition: transform 0.5s, box-shadow 0.5s;
text-align:center;
}

.about-card h2{
color:#d4af37;
margin-bottom:20px;
font-size:2rem;
}

.about-card p{
line-height:1.7;
color:#444;
margin-bottom:20px;
}

/* 3D Hover Effect */
.about-card:hover{
transform: rotateY(5deg) rotateX(2deg) scale(1.02);
box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}



.about-card{
background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
            url('bridal.jpeg') center/cover no-repeat;
padding:40px;
max-width:900px;
border-radius:20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
transform-style: preserve-3d;
transition: transform 0.5s, box-shadow 0.5s;
text-align:center;
color:#333;
}


.about-overlay{
opacity:0;
animation: fadeIn 1s forwards ease-out;
}

@keyframes fadeIn{
0%{opacity:0; transform: translateY(20px);}
100%{opacity:1; transform: translateY(0);}
}


.gallery{
padding:40px;
text-align:center;
}

.outfits{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.outfit{
text-align:center;
}

.outfit img{
width:200px;
border-radius:10px;
}

.outfit p{
margin-top:8px;
font-weight:bold;
}




/* Container */
.outfits{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:20px 0;
}

/* Individual outfit cards */
.outfit{
text-align:center;
border-radius:15px;
overflow:hidden;
transition: transform 0.5s, box-shadow 0.5s;
cursor:pointer;

/* Optional 3D perspective */
transform-style: preserve-3d;
}

/* Outfit images */
.outfit img{
width:200px;
border-radius:15px;
transition: transform 0.5s;
}

/* Outfit name */
.outfit p{
margin-top:10px;
font-weight:bold;
color:#333;
transition: color 0.3s;
}

/* Hover effect */
.outfit:hover{
transform: rotateY(10deg) scale(1.05); /* 3D tilt + zoom */
box-shadow: 0 20px 30px rgba(0,0,0,0.4); /* Deep shadow for luxury feel */
}

.outfit:hover p{
color:#d4af37; /* Change text color on hover */
}

.outfit:hover img{
transform: scale(1.1); /* Slight zoom of the image */
}




.instagram{
padding:40px;
text-align:center;
background:#f2f2f2;
}

.instagram a{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#E1306C;
color:white;
text-decoration:none;
border-radius:5px;
}

.instagram-feed{
padding:40px;
text-align:center;
background:#f9f9f9;
}

.insta-gallery{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.insta-gallery img{
width:180px;
border-radius:10px;
transition:0.3s;
}

.insta-gallery img:hover{
transform:scale(1.05);
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

form{

display:flex;
flex-direction:column;
width:300px;
margin:auto;

}



/* Custom Order Section */
#order{
padding:80px 20px;
background: linear-gradient(135deg,#f8f5f0,#f1e3c6);
text-align:center;
}

/* 3D Form Card */
#order form{
display:flex;
flex-direction:column;
width:350px;
margin:auto;
padding:35px;

background:white;
border-radius:20px;

/* 3D Shadow */
box-shadow:0 20px 40px rgba(0,0,0,0.2);

transition:transform 0.4s, box-shadow 0.4s;
transform-style:preserve-3d;
}

/* Hover 3D Effect */
#order form:hover{
transform:rotateY(5deg) rotateX(3deg) scale(1.02);
box-shadow:0 30px 60px rgba(0,0,0,0.3);
}

/* Inputs */
#order input,
#order textarea,
#order select{
margin:10px 0;
padding:12px;
border-radius:8px;
border:1px solid #ddd;
outline:none;
transition:0.3s;
}

/* Input Focus Glow */
#order input:focus,
#order textarea:focus,
#order select:focus{
border-color:#d4af37;
box-shadow:0 0 10px rgba(212,175,55,0.4);
}

/* Button Style */
#order button{
margin-top:10px;
background:#d4af37;
color:white;
padding:12px;
border:none;
border-radius:25px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

/* Button Hover */
#order button:hover{
background:#b8962e;
transform:scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


#order{
padding:80px 20px;
text-align:center;

background:
linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
url("luxurypret.jpeg") center/cover no-repeat;
}




input,textarea,select{

margin:10px 0;
padding:10px;

}

button{

background:#d4af37;
color:white;
padding:10px;
border:none;

}


/* Container Spacing */
.collection-container {
    padding: 50px 5%;
    background-color: #fcfcfc;
}

/* The Grid Layout */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    perspective: 1000px; /* Essential for 3D effects */
}

/* 3D Card Styling */
.collection-link {
    text-decoration: none;
    color: inherit;
}

.collection-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.img-container {
    overflow: hidden;
    height: 350px;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card h3 {
    padding: 20px 0;
    font-family: 'Playfair Display', serif; /* Or your preferred elegant font */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

/* Hover Effects (The 3D "Pop") */
.collection-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.collection-card:hover img {
    transform: scale(1.1);
}

/* Client Diary Form Styling */
#client {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #fcfcfc, #f2f2f2);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#client h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Prevents overflow */
    font-family: inherit;
}

form button {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

form button:hover {
    background-color: #333;
    transform: scale(1.02);
}
/* ===== Uniform Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 30px;
  align-items: stretch;  /* ensures cards are same height */
}

/* ===== Product Card ===== */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 260px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* top align content */
  position: relative;
  height: 380px;   /* uniform height for all cards */
}

/* ===== Product Image ===== */
.product-card img {
  width: 100%;
  height: 200px;           /* uniform image height */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Zoom image on hover */
.product-card:hover img {
  transform: scale(1.05);
}

/* ===== Product Name ===== */
.product-card h3 {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  flex-shrink: 0;
}

/* ===== Price Text ===== */
.price {
  color: #c9a96e; /* luxury gold accent */
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  flex-shrink: 0;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;                    /* hidden initially */
  transform: translateY(10px);   /* slide-up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  bottom: 15px;                   /* fixed at bottom */
  left: 50%;
  transform: translate(-50%, 10px);
}

/* Fade-in WhatsApp button on hover */
.product-card:hover .whatsapp-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===== Card Hover 3D Lift ===== */
.product-card:hover {
  transform: translateY(-10px) rotateY(2deg) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ===== Responsive Adjustments ===== */
@media (max-width:900px){
  .product-card {
    height: 380px;
  }
  .product-card img {
    height: 180px;
  }
  .whatsapp-btn {
    bottom: 10px;
    padding: 8px 14px;
  }
}





/* General Page Styling */
.order-page-wrapper {
    background: #fdfbfb;
    padding: 60px 20px;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* 3D Container */
.order-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); /* Deep soft shadow for depth */
    transition: transform 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.order-container:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.order-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.order-header p {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: #d4af37; /* Gold accent */
    margin: 0 auto 40px;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
}

.input-box {
    margin-bottom: 25px;
    flex: 1;
}

.input-box label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-box input, 
.input-box select, 
.input-box textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fcfcfc;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* 3D Input Focus */
.input-box input:focus, 
.input-box textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1); /* Gold glow */
}

textarea {
    height: 100px;
    resize: none;
}

/* Luxury 3D Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #d4af37; /* Turns gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .order-container {
        padding: 30px 20px;
    }
}



.file-upload-wrapper {
    border: 2px dashed #d4af37; /* Gold dashed border */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    background: #fffcf5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    background: #fdf8e8;
    border-color: #b8952d;
    transform: scale(1.01);
}

.file-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
}

#file-upload::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
}

#file-upload::before {
    content: 'Select Image';
    display: inline-block;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

#file-upload:hover::before {
    background: #d4af37;
}
/* About Page Specific Styles */
.about-wrapper {
    background-color: #fdfdfd;
    overflow-x: hidden;
}

/* Hero Section with Parallax Feel */
.about-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), url('luxurypret.jpeg'); /* Using your existing image as background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.about-text-3d h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #1a1a1a;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}

.about-text-3d h1 span {
    font-style: italic;
    color: #d4af37; /* Gold color */
}

/* Brand Story Layout */
.brand-story {
    padding: 100px 10%;
}





/* Dark Theme Base */
.dark-theme {
    background-color: #0a0a0a;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.gold-text { color: #d4af37; }

/* Video Background Layer */
.contact-vignette {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-bg .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

/* Glassmorphism Card */
.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
    max-width: 900px;
    width: 95%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: fadeInScale 0.8s ease-out;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.premium-title span { color: #d4af37; font-style: italic; }

.contact-intro p {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Split Layout */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-block { margin-bottom: 30px; }
.info-block small { color: #d4af37; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; }
.info-block p { font-size: 1.1rem; margin-top: 5px; color: #ddd; }

/* Modern Form Elements */
.modern-form input, .modern-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
    transition: 0.3s;
}

.modern-form input:focus, .modern-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.1);
}

/* 3D Gold Button */
.gold-btn-3d {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #b8952d 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.gold-btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .contact-split { grid-template-columns: 1fr; }
    .glass-box { padding: 30px; }
    .premium-title { font-size: 2.5rem; }
}




.collection-intro {
    text-align: center;
    padding: 80px 20px 40px;
    background: #fdfaf5;
}

.collection-intro span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: #d4af37;
}

.collection-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 10px 0;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

/* Card Hover Effects */
.img-container {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.card-overlay span {
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.client-section {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
}

/* Diary Header */
.diary-header {
    text-align: center;
    padding: 80px 10% 40px;
    background: #fff;
}

.diary-header span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
}

.diary-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 15px 0;
}

.diary-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Masonry Gallery Grid */
.diary-container {
    padding: 0 5% 100px;
}
/* 1. THE GRID: Switching to a cleaner, flexible layout */
.diary-grid {
    display: columns; /* Modern masonry approach */
    column-count: 3;  /* 3 columns on desktop */
    column-gap: 20px;
    padding: 20px 0;
}

/* 2. THE ITEM: Ensuring the container doesn't cut off the bottom */
.diary-item {
    break-inside: avoid; /* Prevents the image from splitting between columns */
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Optional: slight soften for luxury feel */
    display: block;
}

/* 3. THE IMAGE: No more 'height: 100%' which causes the 'missing half' bug */
.diary-item img {
    width: 100%;       /* Fills the width of the column */
    height: auto;      /* CRITICAL: Maintains the full height of the dress */
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 4. THE ZOOM: Now it zooms from the center without losing the top or bottom */
.diary-item:hover img {
    transform: scale(1.1);
}

/* 5. MOBILE FIX: Reduce to 1 column so photos stay large but visible */
@media (max-width: 900px) {
    .diary-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .diary-grid {
        column-count: 1;
    }
}
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.diary-item:hover .item-overlay {
    opacity: 1;
}

.diary-item:hover img {
    transform: scale(1.05);
}

/* Call to Action Section */
.share-moment {
    padding: 100px 5%;
    background: #fdfaf5;
    text-align: center;
    border-top: 1px solid #f2f2f2;
}

.insta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.insta-btn:hover {
    background: #d4af37;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .diary-grid {
        grid-template-columns: 1fr;
    }
    .diary-item {
        grid-row-end: auto !important;
        height: 450px;
    }
}











/* Container for the image to clip the zoom */
.diary-item {
    position: relative;
    overflow: hidden; /* CRITICAL: This keeps the zoom inside the box */
    background: #f9f9f9;
    transition: all 0.5s ease;
}

/* The actual Image Zoom */
.diary-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* This is the starting state */
    transform: scale(1); 
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

/* Hover State: Image scales up */
.diary-item:hover img {
    transform: scale(1.15); /* Adjust this number to zoom more or less */
}

/* Optional: Slight lift effect on the card itself */
.diary-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Darken the overlay slightly on zoom to make the text pop */
.item-overlay {
    background: rgba(0, 0, 0, 0.4); 
    transition: opacity 0.4s ease;
}






/* --- Global Section Styling --- */
.client-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    perspective: 1000px; /* Enables 3D space */
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Soft 3D text shadow */
    text-shadow: 2px 4px 6px rgba(0,0,0,0.1);
}

/* --- 3D Instagram Card --- */
.instagram-prompt {
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 15px;
    
    /* Layered shadow for 3D depth */
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.05),
        0 6px 6px rgba(0,0,0,0.05),
        0 0 100px rgba(184, 134, 11, 0.05); /* Subtle gold glow */
    
    transform: rotateX(5deg); /* Slight tilt for 3D effect */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.instagram-prompt:hover {
    /* Lifts higher on hover */
    transform: translateY(-10px) rotateX(0deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 15px 12px rgba(0,0,0,0.08);
}

/* --- 3D Gold Button --- */
.btn-gold {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    /* The 3D "Pushable" effect */
    box-shadow: 0 6px 0 #8a6d05; 
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.btn-gold:hover {
    box-shadow: 0 4px 0 #8a6d05;
    top: 2px;
}

.btn-gold:active {
    box-shadow: 0 0px 0 #8a6d05;
    top: 6px; /* Button actually "clicks" down */
}

/* --- 3D Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    z-index: 1000;
    
    /* Heavy 3D elevation */
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    
    /* Floating Animation */
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none; /* Hide text on mobile, just show icon/circle */
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
    }
    .whatsapp-float::before {
        content: "WA"; /* Or use a FontAwesome icon */
    }
}




.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.whatsapp-btn {
    flex: 1;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.submit-btn {
    flex: 1;
    /* Keep your existing gold/black styling here */
}





#fabric {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

#fabric:focus {
    border-color: #d4af37; /* Gold color to match Manahil Mohsin branding */
}




:root {
    --gold: #d4af37;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-3d: 0 20px 50px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.main-footer-3d {
    background: #f8f8f8; /* Slightly off-white to make the white cards "pop" */
    padding: 100px 20px 40px;
    perspective: 1000px; /* Essential for 3D depth */
}

.footer-content-3d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

/* 3D Card Effect */
.footer-card-3d {
    background: var(--glass);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-3d);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.footer-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg); /* Lifts up and tilts slightly */
    box-shadow: 0 40px 70px rgba(212, 175, 55, 0.15); /* Adds a subtle gold glow on hover */
}

.footer-card-3d h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.footer-card-3d h4 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 25px;
}

/* 3D Social Buttons */
.social-links-3d {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn-3d {
    padding: 8px 15px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 0 #ddd; /* 3D "button" thickness */
    transition: all 0.2s ease;
}

.social-btn-3d:hover {
    box-shadow: 0 2px 0 #ddd;
    transform: translateY(2px);
    color: var(--gold);
}

.social-btn-3d:active {
    box-shadow: 0 0px 0 #ddd;
    transform: translateY(4px);
}

/* List Interactivity */
.footer-card-3d ul { list-style: none; padding: 0; }
.footer-card-3d ul li { margin-bottom: 12px; }
.footer-card-3d ul li a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
    display: inline-block;
}

.footer-card-3d ul li a:hover {
    color: var(--gold);
    transform: translateX(10px); /* Slides out for attention */
}

/* 3D Contact Items */
.contact-item-3d {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-3d {
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

.footer-bottom-3d {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #aaa;
    font-size: 0.8rem;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .footer-content-3d { grid-template-columns: 1fr; }
}









/* --- 3D Footer Styles --- */
.footer-3d {
    background: #111;
    padding: 80px 20px 40px;
    perspective: 1000px; /* Gives the 3D depth effect */
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* 3D Glassmorphism Card */
.footer-card.glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.footer-card.glass:hover {
    transform: translateY(-20px) rotateX(10deg);
    border-color: #d4af37; /* Gold border on hover */
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.card-depth {
    transform: translateZ(50px); /* Makes text "float" above the card */
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #d4af37;
}

/* Attentive Online Status */
.live-status {
    margin-top: 25px;
    font-size: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    color: #25d366;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #666;
}

.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
.f-links a:hover { color: #d4af37; padding-left: 10px; }

.s-btn {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    margin-right: 15px;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 2px;
}








/* FAQ Luxury Styling */
.faq-luxury {
    padding: 100px 5%;
    background-color: #faf9f6; /* Soft Off-White */
    font-family: 'Playfair Display', serif; /* Or your chosen elegant font */
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #bfa37e; /* Elegant Gold */
}

.faq-header h2 {
    font-size: 2.5rem;
    margin: 10px 0;
    font-weight: 400;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.faq-trigger {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
}

.faq-number {
    font-size: 0.9rem;
    color: #bfa37e;
    margin-right: 30px;
    font-style: italic;
}

.faq-title {
    font-size: 1.2rem;
    color: #222;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-plus {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.4s ease;
}

/* Horizontal line */
.faq-plus::before {
    width: 100%;
    height: 1px;
    top: 50%;
}

/* Vertical line */
.faq-plus::after {
    width: 1px;
    height: 100%;
    left: 50%;
}

/* Hover & Active States */
.faq-card:hover .faq-title {
    color: #bfa37e;
}

.faq-card.active .faq-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-card.active .faq-plus::before {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-content p {
    padding-bottom: 30px;
    padding-left: 50px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-card.active .faq-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}


/* --- 3D Social Fabs --- */
.social-fab-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.fab-3d {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 3D Lift & Gold Glow on Hover */
.fab-3d:hover {
    transform: translateY(-10px) rotateX(10deg) rotateZ(5deg);
    background: #d4af37;
    color: #000;
    border-color: #fff;
    box-shadow: 0 20px 30px rgba(212, 175, 55, 0.3);
}

.fab-icon {
    transform: translateZ(20px); /* Makes the letters pop out */
}

/* Specific Brand Colors on Hover (Optional) */
.fab-3d.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.fab-3d.tt:hover { background: #000; color: #fff; border-color: #ee1d52; }
.fab-3d.wa:hover { background: #25d366; color: white; border-color: #fff; }

/* --- Attentive Notification Ping --- */
.notification-ping {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #111;
}

/* Pulsing effect to catch the eye */
.notification-ping::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ff4757;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Ensure the glass card handles the hover well */
.footer-card.glass:hover .fab-3d {
    border-color: rgba(212, 175, 55, 0.4);
}




/* Footer Layout Container */
.footer-3d {
    background: #111;
    padding: 100px 20px 50px;
    perspective: 1500px;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 3 equal columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    align-items: start;
}

/* Glass Card Styling */
.footer-card.glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    height: 100%; /* Keeps all cards same height */
}

.footer-card.glass:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Typography & Links */
.footer-card h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.f-links {
    list-style: none;
    padding: 0;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.f-links a:hover {
    color: #d4af37;
    transform: translateX(8px);
}

.contact-details p {
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Footer Bottom Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #555;
    font-size: 0.85rem;
}

/* Responsive Alignment (Mobile) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stacks cards on smaller screens */
        gap: 40px;
    }
    
    .footer-card.glass {
        text-align: center;
    }
    
    .social-fab-container {
        justify-content: center;
    }
}



/* Hide the answer by default */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    opacity: 0;
}

/* Style for when the FAQ is 'active' */
.faq-card.active .faq-content {
    max-height: 200px; /* Adjust based on text length */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Rotate the plus icon to a cross when active */
.faq-card.active .faq-plus::before {
    transform: rotate(45deg);
}

.faq-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}






/* Behind the Craft Section Styles */
.behind-the-craft {
    padding: 100px 10%;
    background-color: #fafafa; /* Light grey to separate from white sections */
}

.btc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Video Styling */
.btc-video-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.btc-video {
    width: 100%;
    border-radius: 4px; /* Slight roundness for elegance */
    box-shadow: 20px 20px 0px #bfa37e; /* Gold offset shadow for a "designer" look */
    display: block;
    z-index: 2;
    position: relative;
}

/* Content Styling */
.btc-content {
    flex: 1;
}

.btc-subtitle {
    color: #bfa37e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 14px;
}

.btc-content h2 {
    font-family: 'Playfair Display', serif; /* Or your main heading font */
    font-size: 36px;
    margin: 15px 0;
    color: #1a1a1a;
}

.btc-intro {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.btc-features {
    list-style: none;
    padding: 0;
}

.btc-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.btc-features .icon {
    font-size: 24px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btc-features strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.btc-features p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.btc-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btc-btn:hover {
    background: #bfa37e;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .btc-container {
        flex-direction: column;
        text-align: center;
    }
    
    .btc-features li {
        flex-direction: column;
        align-items: center;
    }
    
    .btc-video-wrapper {
        margin-bottom: 40px;
    }
}




/* Heritage Craft Section */
.heritage-craft {
    padding: 100px 8%;
    background-color: #fff;
}

.heritage-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.heritage-visual {
    flex: 1.3;
    position: relative;
}

.main-craft-img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 30px 30px 0px #f9f5f0; /* Decorative light-beige background block */
}

.image-caption {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

.heritage-text {
    flex: 1;
}

.gold-subtitle {
    display: block;
    color: #bfa37e;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.heritage-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #111;
}

.heritage-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.process-steps .step {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid #bfa37e;
}

.process-steps strong {
    display: block;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
}

.process-steps p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #bfa37e;
    padding-bottom: 5px;
    transition: 0.3s;
}

.cta-link:hover {
    color: #bfa37e;
    letter-spacing: 1px;
}

/* Mobile Fix */
@media (max-width: 992px) {
    .heritage-container {
        flex-direction: column;
        gap: 50px;
    }
    .heritage-text h2 {
        font-size: 2.2rem;
    }
}








/* Container styling to match "Behind the Craft" */
.insta-hero-section {
    padding: 100px 5%;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.insta-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Big Visual Logic */
.insta-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.insta-circle-large {
    width: 350px; /* Big size like your BTS sections */
    height: 350px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    overflow: hidden;
}

.insta-circle-large img {
    width: 75%; /* Keeps the script logo centered with space */
    height: auto;
}

.insta-verify-badge {
    position: absolute;
    bottom: 40px;
    right: 20%;
    background: #0095f6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #fff;
}

/* Content/Stats Styling */
.insta-hero-content {
    flex: 1.2;
}

.insta-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 10px 0 20px 0;
    font-family: serif;
}

.insta-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.insta-bio {
    margin-bottom: 35px;
    line-height: 1.8;
    color: #444;
}

/* Large Button */
.insta-hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

.insta-hero-btn:hover {
    background-color: #d4af37; /* Gold hover */
    transform: translateY(-5px);
}

/* Responsive for Tablets/Mobile */
@media (max-width: 992px) {
    .insta-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .insta-stats {
        justify-content: center;
    }
    
    .insta-circle-large {
        width: 250px;
        height: 250px;
    }
}

















/* --- Hero Section - White Theme --- */

.hero.white-theme {
    background-color: #fbfbfd; /* Soft, clean off-white background */
    padding: 100px 0; /* Vertical spacing */
    overflow: hidden; /* Contains floating accents */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertically centers text and image */
    justify-content: space-between;
    padding: 0 40px;
    gap: 40px;
}

/* --- Text Styling (Attentive/Elegant) --- */

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bfa071; /* Subtle gold/champagne accent */
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1d1d1f; /* Near-black for elegant readability */
}

.hero-tagline {
    font-size: 18px;
    color: #6e6e73; /* Soft gray for better flow */
    margin-bottom: 30px;
    max-width: 500px;
}

/* --- The Cute & 3D Fabs Button --- */

.hero-btn-primary {
    background: linear-gradient(135deg, #fbfbfd 0%, #ffffff 100%); /* Subtle white gradient */
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px; /* Fully rounded "cute" look */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth interaction */
    
    /* The 3D Pop (Fabs look) */
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.05), /* Main shadow */
        -5px -5px 15px rgba(255, 255, 255, 0.8); /* Highlight for depth */
}

.hero-btn-primary:hover {
    transform: translateY(-3px); /* Attentive float effect */
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.08), 
        -8px -8px 20px rgba(255, 255, 255, 0.9);
    border-color: #bfa071; /* Accent change on hover */
}

/* --- Image Container (3D/Luxurious Focus) --- */

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative; /* For accents */
}

.image-wrapper-3d {
    position: relative;
    width: 100%;
    max-width: 500px; /* Prevents overwhelming size */
    
    /* The main "Glassmorphism" 3D container */
    background: rgba(255, 255, 255, 0.4); 
    padding: 15px;
    border-radius: 30px; /* Soft, cute corners */
    backdrop-filter: blur(10px); /* Soft focus background */
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow: 
        20px 20px 60px #d9d9d9, 
        -20px -20px 60px #ffffff; /* Depth effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Must be slightly smaller than wrapper */
    display: block;
    object-fit: cover;
}

/* --- Optional Cute Accent Dots --- */

.accent-dot {
    position: absolute;
    border-radius: 50%;
    background: #bfa071;
    opacity: 0.6;
}

.dot-1 {
    width: 15px;
    height: 15px;
    top: -20px;
    right: 20px;
}

.dot-2 {
    width: 10px;
    height: 10px;
    bottom: 50px;
    left: -15px;
}

/* --- Responsiveness (Crucial for Attention) --- */

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse; /* Put image above text on mobile */
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image-container {
        margin-bottom: 50px;
    }
}               





















/* Container for the outfits grid */
.outfits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Remove default link styling */
.outfit-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.outfit {
    overflow: hidden;
    border-radius: 15px; /* Cute rounded corners */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    text-align: center;
}

.outfit img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.outfit p {
    padding: 15px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    color: #1d1d1f;
}

/* Luxury Hover Effects */
.outfit-link:hover .outfit {
    transform: translateY(-10px); /* 3D Lift effect */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Soft luxury shadow */
}

.outfit-link:hover img {
    transform: scale(1.05); /* Subtle zoom in */
}

.outfit-link:hover p {
    color: #bfa071; /* Text turns gold on hover */
}



/* --- RESPONSIVE PATCH FOR MANAHIL MOHSIN --- */

@media (max-width: 768px) {
    /* 1. Fix Header: Stack logo and nav links */
    header {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .logo-area {
        margin-bottom: 15px;
    }

    nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }

    /* 2. Fix Contact Section: Move form below info */
    .contact-split {
        flex-direction: column; /* Stacks the info and the form */
        gap: 30px;
    }

    .glass-box {
        padding: 20px;
        width: 95%; /* Prevents it from touching screen edges */
        margin: 0 auto;
    }

    /* 3. Fix Footer: Stack the cards vertically */
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-card {
        width: 100% !important; /* Forces cards to take full width */
        max-width: 350px;
    }

    /* 4. Fix Premium Title size for mobile */
    .premium-title {
        font-size: 2rem;
    }
}

/* Fix for very small phones (e.g. iPhone SE) */
@media (max-width: 480px) {
    .premium-title {
        font-size: 1.5rem;
    }
    
    .gold-btn-3d {
        width: 100%; /* Makes the button full width for easier tapping */
    }
}