/* =====================================================
   ETERNAL BONDS – LUXURY WEDDING THEME (FINAL DARK MODE)
   Fixed: Mobile header line, scroll text, image zoom
   Base color: #07373D | Accent: #C7A76C | Text: #FAF7F2
===================================================== */

:root {
  --clr-bg: #07373D;           /* Dark base */
  --clr-text-light: #FAF7F2;   /* Ivory text */
  --clr-accent: #C7A76C;       /* Gold */
  --clr-section-bg: #FAF7F2;   /* Light section background */
  --clr-section-text: #07373D; /* Text color inside light sections */
}

/* -----------------------------------------------------
   GLOBAL
----------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text-light);
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--clr-text-light); }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* =====================================================
   HEADER
===================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(7, 55, 61, 0.85);
  backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* --- LOGO + BRAND TEXT --- */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.75));
  transition: transform .3s ease;
}
.logo-link:hover .site-logo { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* "Eternal Bonds" - Tangerine font */
.brand-name {
  font-family: 'Tangerine', cursive;
  font-size: 2.1rem;
  color: var(--clr-text-light);
  letter-spacing: 1px;
  line-height: 1;
}

/* "Weddings" - Cinzel Decorative font */
.brand-tag {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.7rem;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-top: 2px;
  line-height: 1.2;
  text-align: center
}

/* Scrolled state — darker navy, not white */
body.scrolled .header {
  background: rgba(7, 55, 61, 0.98);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Keep text light always */
body.scrolled .brand-name { color: var(--clr-text-light); }
body.scrolled .brand-tag { color: var(--clr-accent); }
body.scrolled .nav-links a { color: var(--clr-text-light); }
body.scrolled .nav-links a:hover,
body.scrolled .nav-links a.active { color: var(--clr-accent); }

/* =====================================================
   NAVIGATION
===================================================== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: color .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-accent); }

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -2px !important;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,55,61,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-text-light);
  padding: 0 20px;
  max-width: 700px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s ease-out forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 24px;
  line-height: 1.1;
  color: rgba(250,247,242,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  text-decoration: none !important;
  background: linear-gradient(145deg, var(--clr-accent), #EADCD3);
  color: var(--clr-section-text);
  font-weight: 600;
  letter-spacing: .4px;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .4s ease;
  box-shadow: 0 4px 12px rgba(199,167,108,0.4);
}
.btn:hover {
  background: linear-gradient(145deg, #E2C47A, #C7A76C);
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================
   OUR SIGNATURE TOUCH (HOME PAGE)
   Elegant ivory section between dark hero + dark footer
===================================================== */

.services-preview {
  background: #FAF7F2; /* Soft ivory section for contrast */
  color: #07373D;
  text-align: center;
  padding: 110px 20px;
  position: relative;
}

.services-preview h2 {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: #07373D;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.services-preview h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #C7A76C; /* Gold underline */
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Service cards --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: #07373D;
  font-size: 1.3rem;
  margin-top: 18px;
}

.service-card p {
  font-size: 1rem;
  color: #444;
  padding: 0 22px 30px;
  line-height: 1.6;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .services-preview {
    padding: 80px 15px;
  }
  .services-preview h2 {
    font-size: 1.9rem;
  }
  .service-card img {
    height: 200px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: .95rem;
  }
}
/* =====================================================
   ABOUT PAGE – REFINED FOR ETERNAL BONDS THEME
   Smooth transition from dark hero → light ivory section
===================================================== */

.about-section {
  padding: 110px 20px 120px;
  background: linear-gradient(to bottom, #EEE9E2 0%, #FAF7F2 100%);
  color: var(--clr-section-text);
  position: relative;
  border-top: 2px solid rgba(199,167,108,0.08);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* --- Text Block --- */
.about-text {
  flex: 1.1;
  min-width: 320px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--clr-section-text);
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-text strong {
  color: var(--clr-accent);
  font-weight: 600;
}

/* --- Image Block --- */
.about-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(199,167,108,0.15); /* soft golden glow */
  transition: transform .5s ease, box-shadow .5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 45px rgba(199,167,108,0.3);
}

/* =====================================================
   OUR PHILOSOPHY SECTION – ETERNAL BONDS
   Matches light ivory sections with gold accent divider
===================================================== */

.philosophy-section {
  background: linear-gradient(to bottom, #EEE9E2 0%, #FAF7F2 100%);
  color: var(--clr-section-text);
  text-align: center;
  padding: 110px 20px 120px;
  position: relative;
  border-top: 2px solid rgba(199,167,108,0.08);
}

.philosophy-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--clr-section-text);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.philosophy-section .divider {
  width: 70px;
  height: 3px;
  background: var(--clr-accent);
  margin: 10px auto 30px;
  border-radius: 2px;
}

.philosophy-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin: 0 auto;
  max-width: 720px;
}

/* --- Fade-in animation for a polished entry --- */
.philosophy-section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSection 1.2s ease-out forwards;
}

@keyframes fadeUpSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 80px 15px;
  }
  .philosophy-section h2 {
    font-size: 1.9rem;
  }
  .philosophy-section p {
    font-size: 1rem;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.9rem;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image img {
    max-width: 95%;
    margin: 0 auto;
  }
}



/* =====================================================
   SERVICES PAGE
===================================================== */
.services-list { padding: 100px 20px; background: var(--clr-section-bg); }
.service-items { display: flex; flex-direction: column; gap: 70px; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.service-item:nth-child(even) {
  flex-direction: row-reverse;
  background: var(--clr-section-bg);
  padding: 40px;
  border-radius: 20px;
}
.service-item img {
  width: 45%;
  min-width: 300px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: transform .4s ease;
}
.service-item:hover img { transform: scale(1.03); }
.service-info { flex: 1; min-width: 300px; }
.service-info h3 { font-size: 1.8rem; margin-bottom: 18px; color: var(--clr-section-text); }
.service-info p { font-size: 1rem; line-height: 1.7; color: #555; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section { padding: 120px 20px; background: var(--clr-section-bg); }
.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}
.contact-info {
  flex: 1; min-width: 320px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; color: var(--clr-section-text); }
.contact-info p { color: #555; line-height: 1.8; margin-bottom: 20px; }
.contact-details p { font-size: 1rem; margin-bottom: 10px; color: var(--clr-section-text); }
.contact-form {
  flex: 1.2; min-width: 340px;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(199,167,108,0.15);
}
.contact-form label {
  color: #07373D; /* Dark teal for contrast */
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 6px;
}
.contact-form h2 { font-size: 2rem; margin-bottom: 30px; color: var(--clr-section-text); }
form { display: flex; flex-direction: column; gap: 22px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d8cfc3;
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
  color: var(--clr-section-text); /* ensures dark teal text is visible */
  transition: all 0.3s ease;
  caret-color: var(--clr-section-text); /* cursor color matches text */
}

/* Placeholder text — make clearly visible and elegant */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(7, 55, 61, 0.65); /* medium-dark teal for visibility */
}

/* Focus state — soft gold glow */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  background: #fffdf8;
  box-shadow: 0 0 10px rgba(199, 167, 108, 0.25);
  outline: none;
  transform: scale(1.01);
}


/* Keep consistent spacing */
form .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.form-group:focus-within label {
  color: #C7A76C; /* Gold highlight when input active */
  transition: color 0.3s ease;
}
/* =====================================================
   CTA + FOOTER
===================================================== */
.cta { background: var(--clr-bg); color: var(--clr-text-light); text-align: center; padding: 90px 20px; }
.cta h2 { font-size: 2.4rem; margin-bottom: 30px; }
footer {
  background: var(--clr-bg);
  color: var(--clr-text-light);
  text-align: center;
  padding: 24px 10px;
  font-size: .9rem;
}

/* =====================================================
   MOBILE STYLES
===================================================== */
@media (max-width: 768px) {
  .menu-toggle { display: block; font-size: 1.8rem; color: var(--clr-text-light); cursor: pointer; z-index: 1100; }
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(7,55,61,0.95);
    border-top: 1px solid rgba(199,167,108,0.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
  }
  nav.open { max-height: 300px; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 15px; padding: 15px 25px; }
  .nav-links a { width: 100%; display: block; padding: 8px 0; }

  .hero { height: 80vh; margin-top: -3px !important; }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: rgba(7,55,61,0.9);
    z-index: 3;
  }
  .hero-image { object-fit: cover; object-position: center top; }

  .hero-content h1 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 18px; }
  .hero-content p { font-size: 1rem; margin-bottom: 30px; }

  .service-card img, .service-item img, .about-image img {
    object-fit: contain !important;
    width: 100%; height: auto; max-height: 280px;
  }
  .service-item { flex-direction: column; text-align: center; }
  .service-info { padding-top: 10px; }
}

/* =====================================================
   BRAND HOVER EFFECT
===================================================== */
.brand-name {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.brand-name:hover {
  color: var(--clr-accent);
  text-shadow: 0 0 6px rgba(199,167,108,0.6);
}

/* =====================================================
   MENU TOGGLE VISIBILITY FIX
===================================================== */

/* Hide ☰ icon on large screens */
.menu-toggle {
  display: none;
}

/* Show only on mobile (under 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
.hidden {
  display: none;
}

/* =====================================================
  Instagram link
===================================================== */

/* ===== INSTAGRAM FOOTER LINK ===== */
/* ===== INSTAGRAM FOOTER LINK ===== */
.footer-social {
  margin-bottom: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--clr-text-light);
  font-size: 0.95rem;
  transition: transform .3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a span {
  color: var(--clr-accent); /* Gold username */
  font-weight: 500;
}

/* Icon styling */
.insta-icon {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  object-fit: contain !important;

  filter: brightness(300%) invert(1);
  opacity: 0.9;
  transition: opacity .3s ease, transform .3s ease;
}

/* Hover effect */
.footer-social a:hover .insta-icon {
  opacity: 1;
  transform: scale(1.08);
}
