/* ===========================
   Global Styles
   =========================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: #f8f5f2;
  color: #33312f;
  text-align: center;
}

/* Typography overrides for container paragraphs */
.container p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Headings */
h1,
h2,
h3 {
  color: #4a4541;
  margin: 0.5em 0;
}

/* Links */
a {
  color: #b96b6b;
  text-decoration: none;
}
a:hover {
  color: #934848;
  text-decoration: underline;
}

/* ===========================
   Buttons
   =========================== */
.btn-secondary {
  background-color: #2e4739;
}
.btn-sendhp {
  background-color: #6b4226;
  color: #fff;
}
.btn-sendhp:hover,
.btn-send:hover {
  background-color: #8a5c3d;
}

/* ===========================
   Banners
   =========================== */
.wedding-banner {
  background-color: #2e4739;
  color: #f8f5f2;
  padding: 2em 1em;
  margin: 0 auto;
}

.wedding-banner-text,
.wedding-banner-text2 {
  font-family: 'Cormorant Garamond', serif;
  color: #f8f5f2;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: clamp(16px, 5vw, 36px);
  text-align: center;
}

/* ===========================
   Calligraphy & Special Text
   =========================== */
.text-calligraphy {
  font-family: 'Satisfy', cursive;
  font-size: clamp(20px, 6vw, 40px);
  color: #f8f5f2;
  margin-bottom: 0.3em;
  text-align: center;
}

.save-date-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 36px);
  color: #f8f5f2;
  text-align: center;
}

/* ===========================
   Images
   =========================== */
.main-image {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  .main-image {
    max-width: 70%;
  }
}
.venue-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.olmen-img {
  width: 70%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.accom-img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.centered-img {
  display: block;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===========================
   Footer
   =========================== */
footer {
  font-size: 0.9rem;
  color: #777;
  padding: 1rem 0;
}
.wedding-footer {
  background-image: url('./images/testingimage.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding: 100px;
  color: #f8f5f2;
}

.footer-text {
  position: absolute;
  top: 300px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #000;
  padding: 1rem;
  font-size: 16px;
}
.footer-text a {
  color: #ebebec;
}
.footer-text a:hover {
  color: #0c4749;
}

/* ===========================
   Contact Form
   =========================== */
.contact-container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  padding: 5px;
}
form {
  max-width: 600px;
  margin: 1em auto;
  padding: 5px;
  background-color: #f8f5f2;
  border: 1px solid #ccc;
  text-align: left;
}
label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #4a4541;
}
input,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #b6b6b6;
  border-radius: 2px;
  font-size: 16px;
  margin-bottom: 1.5em;
}
#success-message {
  background-color: #efeae3;
  border: 1px solid #c7b39b;
  color: #4b2e2e;
  font-weight: bold;
  padding: 20px;
}
.form-control:focus {
  box-shadow: none;
  border-color: #8a5c3d;
}

/* ===========================
   Utilities
   =========================== */
.pdisclaimer {
  text-decoration: underline;
  font-size: x-small;
}

/* ===========================
   Media Queries
   =========================== */
@media (min-width: 1201px) and (max-width: 1699px) {
  .wedding-banner-text {
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.3;
  }
  .wedding-banner-text2 {
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.3;
  }
  .wedding-footer {
    background-size: 100% auto;
    min-height: 60vh;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

@media (min-width: 601px) and (max-width: 1200px) {
  .wedding-banner-text {
    font-size: clamp(18px, 3.5vw, 32px);
    line-height: 1.25;
  }
  .wedding-banner-text2 {
    font-size: clamp(16px, 3.5vw, 30px);
    line-height: 1.25;
  }
  .wedding-footer {
    background-size: contain;
    min-height: 40vh;
  }
}

@media (max-width: 600px) {
  .wedding-banner-text {
    font-size: clamp(18px, 10vw, 32px);
    line-height: 1.2;
  }
  .wedding-banner-text2 {
    font-size: clamp(16px, 10vw, 30px);
    line-height: 1.2;
  }
  .wedding-footer {
    background-size: cover;
  }
}

@media (min-width: 1700px) {
  .wedding-footer {
    background-size: cover;
    min-height: 70vh;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.language-switcher {
  text-align: right;           /* Rechts uitlijnen, pas aan naar center of left */
  margin: -2rem 1rem 2rem;     /* Up/down spacing, stem af op je layout */
}

.language-switcher .lang-link {
  display: inline-block;
  margin-left: 0.5rem;         /* Ruimte tussen de knoppen */
  padding: 0.4rem 0.8rem;       /* Klikbare ruimte voor touch */
  background: rgba(255,255,255,0.8);
  color: #2e4739;              /* Afstemming op je bruin-groene buttons */
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s;
}

.language-switcher .lang-link:hover,
.language-switcher .lang-link:focus {
  background: rgba(255,255,255,1);
}

.language-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  color: #2e4739;
  transition: background 0.2s;
}

.language-nav .nav-link:hover {
  background: rgba(46, 71, 57, 0.1);
}

.language-nav .flag-icon {
  margin-right: 0.5rem;
}
