






/* =========================================================
   1. GLOBAL & RESET FIXES
   ========================================================= */
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow-x: hidden; /* Side scroll bar hatane ke liye */
}

/* =========================================================
   2. HERO SECTION FIX
   ========================================================= */
.hero, 
.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Hero Content */
.hero-content, .hero-text {
  max-width: 900px;
  width: 100%;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 54px) !important; /* Mobile pe chhota, Desktop pe bada auto-adjust */
  margin-bottom: 15px;
}

/* =========================================================
   3. GALLERY SECTION FIX
   ========================================================= */
.gallery-section, 
.gallery-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Responsive Grid for Gallery Images */
.gallery-grid, 
.image-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
}

.gallery-item, 
.gallery-card {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img, 
.gallery-card img,
.gallery-grid img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important; /* Images distort/pichak nahi hongi */
  display: block;
}

/* =========================================================
   4. MOBILE SPECIFIC MEDIA QUERY (Under 768px Phones)
   ========================================================= */
@media screen and (max-width: 768px) {
  
  /* Hero Section Mobile Adjustments */
  .hero, .hero-section {
    min-height: 60vh !important;
    padding: 30px 15px !important;
  }

  .hero h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  /* Gallery Single Column on Small Screen */
  .gallery-grid, 
  .image-grid {
    grid-template-columns: 1fr !important; /* Mobile me 1 ke niche 1 aayenge */
    gap: 15px !important;
  }

  .gallery-item img, 
  .gallery-card img,
  .gallery-grid img {
    height: 220px !important;
  }

  /* Form / Cards Flex Layout Fix */
  .form-row, 
  .flex-container {
    flex-direction: column !important;
    width: 100% !important;
  }
}

/* Mobile Screens (Phones - 768px se kam) ke liye special rules */
@media screen and (max-width: 768px) {
  
  /* 1. Flexbox / Grid ko Single Column (1 line me ek) kar do */
  .form-row, 
  .gallery-grid, 
  .wedding-card-container {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* 2. Container ki padding mobile ke hisaab se adjust karo */
  .luxury-transport-wrapper,
  .luxury-card {
    padding: 20px 15px !important;
    width: 100% !important;
  }

  /* 3. Heading / Titles font size thoda chhota karo */
  .gold-gradient-text {
    font-size: 22px !important;
  }

  /* 4. Images responsive karo taaki screen se bahar na jayein */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}





@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ==============================================
   1. GLOBAL RESET & BASE STYLES
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #050505;
    --bg-dark: #121212;
    --gold: #d4af37;
    --gold-bright: #e1b12c;
    --border-gold: rgba(212, 175, 55, 0.4);
}

body {
    background-color: var(--bg-black);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
}
/* Sections ke beech ka extra gap hatane ke liye */
section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 20px !important;    /* Zarurat ke hisaab se 10px ya 0px bhi kar sakte hain */
    padding-bottom: 20px !important;
}

/* Headings aur Containers ka margin kam karne ke liye */
section .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

section h2 {
    margin-bottom: 5px !important;
}
/* Typography & Utilities */
.font-playfair { font-family: 'Playfair Display', serif; }
.gold { color: #D4AF37; }
.gold-text { color: var(--gold) !important; }
.bg-dark-theme { background-color: var(--bg-dark) !important; }
.bg-black { background-color: var(--bg-black) !important; }

/* Dividers & Buttons */
.gold-divider { width: 60px; height: 2px; background: var(--gold); }
.gold-divider-center { width: 80px; height: 2px; background: var(--gold); margin: 0 auto; position: relative; }
.gold-divider-center::after { content: '♦'; position: absolute; top: -11px; left: calc(50% - 6px); color: var(--gold); background: var(--bg-dark); padding: 0 4px; font-size: 12px; }

.btn-gold { 
    background: var(--gold); 
    color: #000 !important; 
    border: 1px solid var(--gold); 
    transition: 0.3s; 
}

.btn-gold:hover { 
    background: var(--gold-bright); 
    border-color: var(--gold-bright); 
    box-shadow: 0 0 15px rgba(225, 177, 44, 0.4); 
}

.btn-gold-outline {
    background: transparent;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    padding: 12px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: #d4af37;
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* 2. Style Cards (Tombstone Arch Shape) */
.style-card {
  background: #181818;
  border: 1px solid var(--border-gold);
  border-radius: 80px 80px 8px 8px;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 10px;
}





/* Container styling */
.wedding-title-container {
  text-align: center;
  padding: 20px 0;
  background-color: #050505; /* Black background */
}

/* Heading style */
.wedding-title {
  color: #D4AF37;
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Luxury Divider Layout */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Left and Right Tapered Golden Lines */
.luxury-divider .line {
  height: 1.5px;
  width: 100px; /* Line ki length adjust kar sakte hain */
}

.luxury-divider .left-line {
  background: linear-gradient(to right, transparent, #D4AF37);
}

.luxury-divider .right-line {
  background: linear-gradient(to left, transparent, #D4AF37);
}

/* Center Ornament Styling */
.center-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ==============================================
   4. WEDDING STYLES SECTION (ARCH CARDS)
   ============================================== */
.wedding-styles-section {
    background-color: #050505 !important;
}

.style-card {
    background: #0d0d0d;
    border: 1.5px solid #d4af37 !important;
    border-radius: 90px 90px 8px 8px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 7px;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.style-img-wrapper {
    height: 200px;
    border-radius: 83px 83px 4px 4px;
    overflow: hidden;
}

.style-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.style-label {
    padding: 12px 4px 6px;
    font-weight: 500;
    font-size: 0.88rem;
    color: #e5e5e5;
}

.style-svg {
    width: 20px;
    height: 20px;
    stroke: #d4af37 !important;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Style Card Hover Effects */
.style-card:hover {
    transform: translateY(-6px);
    border-color: #f3e5ab !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 18px rgba(212, 175, 55, 0.35);
}

.style-card:hover .style-img-wrapper img {
    transform: scale(1.08);
}

.style-card:hover .style-svg {
    stroke: #ffffff !important;
    transform: scale(1.15);
}

.style-card:hover .style-label span {
    color: #d4af37 !important;
}

.extra-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ==============================================
   5. SERVICES GRID
   ============================================== */
.service-box {
    border: 1.5px solid #d4af37 !important; 
    padding: 22px 10px;
    background: rgba(15, 15, 15, 0.9);
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-svg {
    width: 38px;
    height: 38px;
    stroke: #d4af37 !important;
    stroke-width: 1.3;
    transition: all 0.3s ease;
}

.service-box i { font-size: 1.8rem; color: var(--gold); transition: 0.3s; }
.service-box span { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }

.service-box:hover {
    border-color: #f3e5ab !important;
    background: #141414;
    transform: translateY(-5px);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.service-box:hover .service-svg {
    stroke: #ffe066 !important;
    transform: scale(1.12);
}

.service-box:hover i { transform: scale(1.1); color: var(--gold-bright); }
.service-box:hover span { color: #d4af37 !important; }

/* ==============================================
   6. STATS BANNER
   ============================================== */
.stat-circle {
    width: 60px; height: 60px; border: 1.5px solid #d4af37 !important; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #d4af37 !important; margin: 0 auto;
}

.stat-circle i { color: #d4af37 !important; }

.stats-img-half {
    min-height: 300px; height: 100%;
    background: url('/wedding/images/royal_weddings.png') no-repeat center center/cover;
}

/* ==============================================
   7. PROCESS TIMELINE
   ============================================== */
.process-line {
    position: absolute; top: 45px; left: 10%; width: 80%; height: 1px;
    border-top: 1.5px dashed #d4af37 !important; z-index: 1;
}

.process-step {
    width: 70px; height: 70px; border: 2px solid #d4af37 !important; border-radius: 50%;
    background: var(--bg-black); display: inline-flex; align-items: center;
    justify-content: center; font-size: 1.5rem; color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2); transition: 0.3s;
}

.process-step i, 
.process-step svg {
    color: #d4af37 !important;
    stroke: #d4af37 !important;
}

.process-step:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

.process-step:hover i,
.process-step:hover svg {
    color: #000 !important;
    stroke: #000 !important;
}

/* ==============================================
   8. GALLERY SECTION
   ============================================== */
.gallery-img { height: 250px; overflow: hidden; border-radius: 4px; border: 1.5px solid #d4af37 !important; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-img:hover img { transform: scale(1.1); }

/* ==============================================
   9. QUOTE FORM SECTION
   ============================================== */
.quote-section {
    background: linear-gradient(rgba(8,8,8,0.85), rgba(8,8,8,0.95)), url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1200&auto=format&fit=crop&q=80') no-repeat left center/cover;
}

.quote-form-box { background: rgba(18, 18, 18, 0.95); border: 1.5px solid #d4af37 !important; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.dark-input { background: #0a0a0a !important; border: 1px solid #333 !important; color: #fff !important; padding: 12px 15px; font-size: 0.9rem; }
.dark-input:focus { border-color: var(--gold) !important; box-shadow: none !important; }
.dark-input::placeholder { color: #666 !important; }

/* ==============================================
   10. GLOBAL GOLD OVERRIDES (ICONS & BORDERS)
   ============================================== */
svg, 
.service-svg, 
.style-svg {
    stroke: #d4af37 !important;
}

i, 
.fas, 
.far, 
.fab, 
.material-symbols-outlined {
    color: #d4af37 !important;
}

.style-card, 
.service-box, 
.gallery-img, 
.quote-form-box {
    border-color: #d4af37 !important;
}

.service-box:hover .service-svg,
.style-card:hover .style-svg {
    stroke: #ffe066 !important;
}


/* Mobile & Tablet background fix */
@media screen and (max-width: 1024px) {
    .wedding-hero {
        background-image: url('wedding/wedding_phero.png'), url('../wedding/wedding_phero.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important; 
        min-height: 480px !important;
        height: auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}


/* ==============================================
   YOUTUBE BACKGROUND VIDEO & SOUND BUTTON STYLES
   ============================================== */
.wedding-hero {
    position: relative !important;
    width: 100% !important;
    min-height: 520px !important;
    height: 60vh !important;
    background-color: #000 !important;
    overflow: hidden !important;
}

.youtube-video-wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 177.77vh !important;
    min-height: 56.25vw !important;
    transform: translate(-50%, -50%) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.youtube-video-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

.hero-bg-overlay { 
    position: absolute !important; 
    top: 0 !important; 
    left: 0 !important; 
    width: 100% !important; 
    height: 100% !important; 
    background: linear-gradient(90deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.2) 100%) !important;
    z-index: 1 !important; 
    pointer-events: none !important;
}

.wedding-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Sound Button Styling */
.sound-btn {
    position: absolute !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 10 !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #c5a880;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sound-btn:hover {
    transform: scale(1.1);
}




