/* Modern Wedding Details Page Styling */
@font-face {
  font-family: script;
  src: url(../RougeScript-Regular.ttf);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #faf5f0 0%, #f7ede7 50%, #f4e6db 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Floating Navigation */
.navbar {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

/* Couple Names - Main Title */
.couple-names {
  font-family: script, cursive;
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  color: white;
}

/* Page Subtitle */
.page-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}



.date-highlight {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #6b5b47;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 115, 85, 0.2);
}

/* Details Section */
.details-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #6b5b47;
  margin-bottom: 1rem;
  font-weight: 500;
}

.decorative-line {
  width: 80px;
  height: 2px;
  background: #c4a574;
  margin: 1rem auto;
  border-radius: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: #8b7355;
  font-weight: 300;
  font-style: italic;
}

/* Details Grid */
.details-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.detail-card {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c4a574, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(196, 165, 116, 0.3);
}

.detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #6b5b47;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.time-info {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #8b7355;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.time-info i {
  color: #c4a574;
  margin-right: 0.5rem;
}

.venue-info {
  margin-bottom: 2.5rem;
}

.venue-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #6b5b47;
  margin-bottom: 1rem;
  font-weight: 500;
  font-style: italic;
}

.venue-info p {
  color: #8b7355;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.venue-info i {
  color: #c4a574;
  margin-right: 0.5rem;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #c4a574, #d4af37);
  color: white;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(196, 165, 116, 0.25);
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
}

.map-btn:hover {
  background: linear-gradient(135deg, #8b7355, #c4a574);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 165, 116, 0.35);
}

/* Additional Info */
.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  color: #8b7355;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.info-card h3 i {
  color: #d4af37;
}

.info-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Footer */
.footer {

  padding: 3rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer p {
  color: #8b7355;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.heart-divider {
  margin: 1.5rem 0;
  color: #f4c2c2;
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    top: 15px;
    padding: 0.5rem 1rem;
    gap: 1rem;
    font-size: 0.7rem;
    border-radius: 25px;
  }
  
  .nav-link {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    gap: 0.3rem;
  }
  
  .hero {
    padding-top: 80px;
    height: 60vh;
    min-height: 400px;
  }  
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .detail-card {
    padding: 2rem;
  }
  
  .additional-info {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  
  .date-highlight {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
}


/* === Mobile Responsive Styles === */
@media (max-width: 768px) {
  .wrapper {
    margin: 1rem;
    padding: 1rem;
  }

  .site-header h1 {
    font-size: 5rem;
  }

  .navbar {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;     
  gap: 0.5rem;
  margin-top: 1rem;
}

  .navbar a {
    font-size: 0.7rem;
  }



  .details {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .column {
    max-width: 100%;
  }

  .column h3 {
    font-size: 1.25rem;
  }

  .column p {
    font-size: 1rem;
  }

  .column a  {
    padding: .75rem 1.5rem;
  }

  .message {
    font-size: 1rem;
    padding: 1rem;
  }

  .hero img {
    max-height: 50vh;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .site-header h1 {
    font-size: 4rem;
  }

  .navbar a {
    font-size: 0.7rem;
  }

  .column h3 {
    font-size: 1.1rem;
  }

  .column p {
    font-size: 0.95rem;
  }
}