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

body {
  font-family: 'Cormorant Garamond', serif;
  color: #0b0a0a;

  background-color: #faf8f529;
  background-image: url("images/spring_watercolor_floral_background.png");
  background-repeat: repeat;
  background-size: 450px;
    background-blend-mode: lighten;

  background-position: top left;
}


/* ================= VERTICAL NAVIGATION ================= */
.vertical-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    background-color: rgba(163,177,138,0.7); /* Warm Sage transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    z-index: 1000;
    border-radius: 0 12px 12px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-menu li a {
    color: #4A4A3F;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    transition: transform 0.3s, color 0.3s;
}

.nav-menu li a:hover {
    color: #010101; /* Black */
    transform: scale(1.2);
}

/* ================= HERO SECTION ================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;       /* horizontally centered */
    justify-content: flex-start; /* top alignment */
    padding: 40px 20px;
    min-height: 100vh;
    background-color: transparent;
    gap: 30px;
}
/* Countdown wrapper to center the box */
.countdown-wrapper {
    display: flex;
    justify-content: center; /* horizontal centering */
    margin: 20px 0;          /* vertical spacing */
}

/* Countdown Box */
.countdown-box {
    background-color: rgba(163,177,138,0.5); /* Warm Sage transparent */;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.5);
    text-align: center;
    margin-bottom: 20px;
}

/* Countdown Text */
.countdown-box #countdown {
    font-size: 2em;
    color: #000000;
}

/* Save the Date Text */
.save-the-date h1 {
    font-size: 5em;
    color: #0b0a0a;
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
}

.save-the-date h2 {
    font-size: 1.8em;
    color: #A3B18A; /* Warm Sage */
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
}

.save-the-date h3 {
    font-size: 3em;
    color: #000000; /* Warm Sage */
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
}

/* ================= VENUE BOXES ================= */
.info-container {
    display: flex;
    flex-wrap: wrap; /* allows wrapping on small screens */
    gap: 30px;
    justify-content: flex-start; /* center horizontally */
    margin: 0 auto;
    max-width: 1200px;
}

.info-box {
    position: relative;
    flex: 0 0 450px;  /* fixed width */
    width: 450px;
    height: 300px;    /* fixed height */
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    background-size: cover;
    background-position: center;

    /* Flex for content */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-start;     /* Make sure text starts at left */
}

.info-box::before {
    content: "";
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}

.info-box h2, .info-box p {
    position: relative;
    z-index: 1;
    text-align: left;
    margin: 5px 0; /* optional spacing */
}

/* ================= TRANSPORT PAGE ================= */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    gap: 20px;
    background-color: #faf8f5; /* consistent with homepage hero */
}

/* Make <strong> text bolder than usual */
.hero strong {
    font-weight: 800; /* bold */
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); 
}


/* Section Title */
.save-the-date h1 {
    font-size: 3.5em;
    color: #0b0a0a;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

/* Instruction Text */
.hero p, .hero ul {
    margin-bottom: 4px;   /* reduce from 12px */
    line-height: 1.4;     /* slightly tighter */
}

.hero a {
    color: #662c66; /* lilac links */
    text-decoration: none;
}

.hero a:hover {
    text-decoration: underline;
}

/* Maps Container */
.maps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin-top: 30px;
    flex-wrap: wrap;   /* ✅ wrapping allowed */
    padding: 0 16px;
}

/* Individual Map Boxes */
.maps-box {
    flex: 0 1 48%;        /* each box takes 48% */
    width: 400px;     /* max width */
    padding: 20px;
    background-color: rgba(163,177,138,0.5); /* soft cream */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.maps-box .map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

/* ==== RESPONSIVE ====== */
@media (max-width: 768px) {
    .maps-box {
        flex: 0 1 100%;
    }

    .hero p, .hero ul {
        width: 90%;
    }
}


/* ================= SCHEDULE PAGE (PRETTIER) ================= */

.schedule-container {
  display: grid;
  gap: 22px;
  justify-content: center;
  max-width: 1100px;
  margin: 30px auto 10px auto;
  padding: 0 16px;
}

/* Card */
.schedule-box {
  position: relative;
  width: min(520px, 100%);
  padding: 28px 30px;
  border-radius: 18px;

  /* Softer, more elegant background */
  background: rgba(250,248,245,0.78);
  border: 1px solid rgba(74,74,63,0.16);
  backdrop-filter: blur(6px);

  /* More premium shadow */
  box-shadow: 0px 14px 28px rgba(0,0,0,0.10);

  text-align: left;

  /* Typography */
  color: #4A4A3F;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* A subtle accent “ribbon” on the left */
.schedule-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 999px;
  background: rgba(163,177,138,0.65); /* sage accent */
}

/* Hover feels nicer */
.schedule-box:hover {
  transform: translateY(-4px);
  box-shadow: 0px 18px 38px rgba(0,0,0,0.14);
}

/* Line items */
.schedule-box p {
  margin: 10px 0;
  font-size: 1.12rem;
  font-weight: 400;
}

/* If you wrap times in <strong> it looks great */
.schedule-box p strong {
  font-weight: 600;
  color: #0b0a0a;
}

/* Divider: softer + more spaced */
.schedule-box hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(74,74,63,0.22),
    transparent
  );
  margin: 16px 0;
}

/* Responsive: keep schedule cards full-width on mobile */
@media (max-width: 768px) {
  .schedule-container {
    margin: 20px auto 10px auto;
    gap: 16px;
  }

  .schedule-box {
    padding: 22px 20px;
    border-radius: 16px;
  }
}

/* ================= RSVP PAGE ================= */
.rsvp-box {
    background-color: rgba(163,177,138,0.4); /* soft sage transparent */
    padding: 2ch 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.3);
    max-width: 500px;
    margin: 10px auto; /* centers the box */
    display: flex;
    flex-direction: column;
}

.rsvp-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rsvp-box label {
    font-size: 1.1em;
    font-weight: 500;
    color: #0b0a0a;
}

.rsvp-box input,
.rsvp-box textarea,
.rsvp-box select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(74,74,63,0.3);
    font-size: 1em;
    font-family: 'Cormorant Garamond', serif;
    width: 100%;
    box-sizing: border-box;
}

.rsvp-box textarea {
    resize: vertical;
}

.rsvp-box select {
    background-color: #fff;
}

.rsvp-box input:focus,
.rsvp-box textarea:focus,
.rsvp-box select:focus {
    outline: none;
    border-color: #A3B18A;
    box-shadow: 0 0 5px rgba(163,177,138,0.5);
}

.submit-btn {
    background-color: #A3B18A; /* warm sage */
    color: #0b0a0a;
    font-size: 1.2em;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #89996f;
    transform: scale(1.05);
}

/* Center hero title for RSVP page */
.hero .save-the-date h1,
.hero .save-the-date h2 {
    text-align: center;
    margin-bottom: 15px;
}


/* ================= UPLOAD PAGE ================= */

.upload-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    min-height: 100vh;
    gap: 20px;
    background-color: #faf8f5;
    padding: 20px;
    text-align: center;
}

.upload-section h1 {
    font-size: 3em;
    font-weight: 300;
    color: #0b0a0a;
}

.upload-section p {
    font-size: 1.2em;
    color: #4A4A3F;
    line-height: 1.4;
}

#uploadButton {
    background-color: #A3B18A;
    color: white;
    font-size: 1.2em;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, background-color 0.3s;
}

#uploadButton:hover {
    background-color: #8fa678;
    transform: scale(1.05);
}


/* ================= CONTACT PAGE ================= */

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */    justify-content: center;
    max-width: 1200px;
    gap: 40px;
    margin: 40px ;
}

.contact-box {
    background-color: rgba(163,177,138,0.5); /* Warm Sage transparent */;
    border-radius: 12px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.5);
    text-align: center;
    padding: 30px 30px;      /* ← adds internal space */

    /* Font styling */
    font-size: 18px;                  /* base size */
    line-height: 1.4;
    font-weight: 400;                 /* normal */
    color: #4A4A3F;                   /* dark text */
}

/* Make headings inside box bigger */
.contact-box h2 {
    font-size: 28px; /* bigger for titles */
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 22px; /* normal text */
}


/* Responsive tweak: stack all on mobile */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* single column on mobile */
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .vertical-nav {
        width: 50px;
    }

    .nav-menu li a {
        font-size: 1.2em;
    }

    .info-container {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding-left: 60px;
    }
}
/* ================= PRIVACY PAGE ================= */
.privacy-page {
    min-height: 100vh;
    padding: 40px 20px;
    background-color: #faf8f5;
    display: flex;
    justify-content: center;
}

.privacy-content {
    width: 100%;
    max-width: 900px;
    background-color: rgba(163,177,138,0.25);
    border-radius: 12px;
    padding: 28px 28px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
}

.privacy-content h1 {
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: center;
    color: #0b0a0a;
}

.privacy-content p {
    font-size: 1.15em;
    line-height: 1.6;
    color: #4A4A3F;
    margin: 10px 0;
}

.privacy-content h2 {
    font-size: 1.8em;
    font-weight: 500;
    color: #0b0a0a;
    margin-top: 22px;
    margin-bottom: 8px;
}

.privacy-content ul {
    margin: 10px 0 10px 22px;
    color: #4A4A3F;
    line-height: 1.6;
    font-size: 1.1em;
}

.privacy-content li {
    margin: 6px 0;
}

.privacy-content a {
    color: #662c66;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.15);
    margin: 22px 0;
}

.privacy-meta {
    opacity: 0.85;
    text-align: center;
    font-size: 1.05em;
}

/* Responsive for privacy page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 20px 18px;
    }

    .privacy-content h1 {
        font-size: 2.3em;
    }

    .privacy-content h2 {
        font-size: 1.5em;
    }
}


/* ================= RSVP CONSENT + LEGAL LINK ================= */
.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: rgba(250,248,245,0.7);
    border: 1px solid rgba(74,74,63,0.18);
}

.consent-box input[type="checkbox"] {
    margin-top: 4px; /* label ile hizalama */
    width: 18px;
    height: 18px;
    accent-color: #A3B18A;
    cursor: pointer;
}

.consent-box label {
    font-size: 1.05em;
    font-weight: 400;
    color: #4A4A3F;
    line-height: 1.4;
}

.consent-box a {
    color: #662c66;
    text-decoration: none;
    font-weight: 500;
}

.consent-box a:hover {
    text-decoration: underline;
}

.page-legal {
    margin-top: 16px;
    text-align: center;
    font-size: 1em;
    opacity: 0.85;
}

.page-legal a {
    color: #662c66;
    text-decoration: none;
    font-weight: 500;
}

.page-legal a:hover {
    text-decoration: underline;
}

/* Make RSVP button spacing consistent */
.rsvp-box .submit-btn {
    margin-top: 12px;
}

/* ================= HOMEPAGE POLISH (ADD AT VERY END) ================= */

/* Give the fixed left nav some breathing room */
.hero {
  padding-left: 90px;
}

/* Center + constrain content so it doesn't look like a giant column */
.hero-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Top header area */
.hero-header {
  text-align: center;
  padding: 20px 10px 6px;
}

.hero-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 12px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(163,177,138,0.20);
  border: 1px solid rgba(74,74,63,0.18);
  font-size: 1.05rem;
  color: #4A4A3F;
}


/* Card styling for the welcome text block */
.card {
  background: rgba(250,248,245,0.75);
  border: 1px solid rgba(74,74,63,0.18);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0px 10px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

/* Buttons */
.welcome-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid rgba(74,74,63,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn.primary {
  background: rgba(163,177,138,0.55);
  color: #0b0a0a;
}

.btn.ghost {
  background: rgba(250,248,245,0.65);
  color: #4A4A3F;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 18px rgba(0,0,0,0.12);
}

/* Venue boxes as a clean grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}


.info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.08)
  );
  z-index: 0;
}

.info-content {
  position: relative;
  z-index: 1;
}

.info-content h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.info-content p {
  margin: 6px 0;
  font-size: 1.05rem;
}

/* Footer */
.page-footer {
  text-align: center;
  opacity: 0.85;
  padding: 10px 0 28px;
}

.page-footer a {
  color: #662c66;
  text-decoration: none;
  font-weight: 500;
}

.page-footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-left: 70px; /* still leave room for the nav */
  }
  .card {
    padding: 20px 18px;
  }
  .hero-meta {
    font-size: 1rem;
  }
}
/* Welcome card ile venue box'lar arasına boşluk */
.welcome-card {
  margin-bottom: 40px;
}

/* Eğer welcome-card class'ını kullanmıyorsan */
.card {
  margin-bottom: 40px;
}

/* ================= HOMEPAGE TEXT CENTER + SOFT BACKGROUND ================= */

.welcome-text {
  text-align: center;
}

.welcome-text p {
  max-width: 750px;
  margin: 0 auto 18px auto;
  font-size: 1.2rem;
  line-height: 1.75;
}

/* Welcome kartını biraz daha zarif yap */
.card {
  background: rgba(163,177,138,0.18); /* çok soft sage */
  border: 1px solid rgba(74,74,63,0.15);
  border-radius: 22px;
  padding: 40px 50px;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.08);
}

.highlight {
  font-size: 1.4rem;
  font-weight: 700; /* bold */
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  letter-spacing: 1px;

}

.hero,
.upload-section,
.privacy-page {
  background: transparent;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: -1;
}
