/* RESET / BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fffdf4;
  color: #4a4a4a;
  line-height: 1.5;
  font-size: 1rem;
}

/* HEADER NAVIGATION */
.header-nav {
  margin-top: 10px;
}

.header-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.header-nav a {
  color: rgb(102, 88, 72);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 50px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  /* min-height: 100vh; */
  background-color: #fffdf4;
  /* padding: 80px 0; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image {
  width: 70%;
  position: relative;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}

.tuscany-landscape {
  width: 100%;
  height: auto;
  fill: #f3e6d8;
}

/* COUNTDOWN TIMER */
.countdown-container {
  position: absolute;
  left: 26%;
  bottom: 20%;
  display: flex;
  font-weight: 500;
  gap: 7px;
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 3;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown-item span:first-child {
  font-size: 0.7rem;
  font-weight: 500;
  color: #4a4a4a;
}

.countdown-item .label {
  font-size: 0.7rem;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
      grid-template-columns: repeat(2, minmax(0, 450px));
      gap: 20px;
      padding: 0 20px;
  }

  .hero-image {
      width: 85%;
  }

  .countdown-container {
      left: 20%;
      bottom: 15%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 60px;
    padding-right: 0px;
    padding-bottom: 30px;
    padding-left: 0px;
  }

  .hero-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .countdown-container {
      left: 50%;
      bottom: -25%;
      transform: translateX(-50%);
      background: rgba(255, 253, 244, 0.9);
  }

  .countdown-item {
      min-width: 60px;
  }

  .countdown-item span:first-child {
      font-size: 24px;
  }

  .countdown-item .label {
      font-size: 12px;
  }

  /* Header Adjustments */
  .logo-and-title {
      flex-direction: column;
      text-align: center;
  }

  .logo-container {
      width: 80px;
      height: 80px;
  }

  .title-text {
      font-size: 1rem;
  }

  /* Navigation */
  .header-nav {
      display: none;
  }

  .mobile-menu-toggle {
      display: block;
  }

  .header-nav.active {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 253, 244, 0.92);
      backdrop-filter: blur(5px);
      padding: 80px 20px;
      z-index: 1001;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
  }

  .header-nav.active ul {
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }

  .header-nav.active .nav-link {
      font-size: 1.2rem;
      color: rgb(102, 88, 72);
      transition: color 0.3s ease;
  }

  .header-nav.active .nav-link:hover {
      color: #a3a67c;
  }

  /* Hero Section */
  .hero-image {
      width: 100%;
  }

  /* Content Sections */
  .intro-text {
      margin: 1.5rem auto;
      padding: 0 1.5rem;
  }

  .subheader {
      font-size: 1.25rem;
  }

  .contact-section {
      padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-container {
      padding: 10px;
  }

  .countdown-item {
      min-width: 40px;
  }
}

/* SUBHEADER & BODY TEXT SECTION */
.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.subheader {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #5b5a54;
  font-weight: 600;
  margin-bottom: 1rem;
}

.body-text {
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

/* CALL TO ACTION SECTION */
.contact-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-text {
  font-size: 0.75rem;
  color: #4a4a4a;
}

.email-link {
  color: #a3a67c;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}

/* FOOTER */
.page-footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  color: #5b5a54;
  border-top: 1px solid rgba(163, 166, 124, 0.2);
}

/* SITE HEADER */
.site-header {
  position: relative;
  background-color: #fffdf4;
  padding: 20px 0;
  border-bottom: 1px solid rgba(102, 88, 72, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Update: Make logo and title container inline */
.logo-and-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container {
  width: 101px;
  height: 99px;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  text-align: center;
}

.title-text {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: rgb(102, 88, 72);
  line-height: 1.2em;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgb(102, 88, 72);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: rgb(80, 68, 52);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: rgb(80, 68, 52);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
    }

    .header-nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 253, 244, 0.92);
        backdrop-filter: blur(5px);
        padding: 80px 20px;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .header-nav.active .nav-link {
        font-size: 1.2rem;
        color: rgb(102, 88, 72);
        transition: color 0.3s ease;
    }

    .header-nav.active .nav-link:hover {
        color: #a3a67c;
    }
}

/* Header Scroll Effect */
.site-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 253, 244, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation Animation */
.header-nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-nav.active {
    transform: translateX(0);
    opacity: 1;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .nav-link {
        padding: 12px 0;
        display: block;
    }
    
    .mobile-menu-toggle {
        padding: 15px;
    }
}

/* Location Page Styles */
.location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.location-hero {
    text-align: center;
    margin-bottom: 60px;
}

.location-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #5b5a54;
    margin-bottom: 10px;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #a3a67c;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.location-info {
    text-align: center;
}

.location-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #5b5a54;
    margin-bottom: 20px;
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.location-map {
    text-align: center;
    margin-top: 40px;
}

.location-map h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #5b5a54;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-title {
        font-size: 2rem;
    }

    .location-subtitle {
        font-size: 1rem;
    }

    .gallery-img {
        height: 250px;
    }
}

/* Hidden elements */
.hidden {
    display: none;
}

.rsvp-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fffdf4;
    /* border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    gap: 40px;
}

.rsvp-intro {
    flex: 1;
    font-size: 1rem;
    color: #333;
}

.rsvp-form-container {
    flex: 1;
}

.rsvp-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #333;
}

.rsvp-form .rsvp-form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.rsvp-form label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.rsvp-form .rsvp-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.rsvp-form .radio-group {
    display: flex;
    flex-direction: column;
}

.rsvp-form .radio-label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.rsvp-form .rsvp-error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.rsvp-form .rsvp-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: rgb(102, 88, 72);;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rsvp-form .rsvp-submit-btn:hover {
    background-color: #45a049;
}

.success-message {
    text-align: center;
    color: green;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Responsive Design for RSVP Page */
@media (max-width: 768px) {
    .rsvp-container {
        flex-direction: column;
    }

    .rsvp-intro {
        order: -1;
        margin-bottom: 20px;
    }
}

/* Existing styles for other pages */
.site-header {
    /* Existing header styles */
}

.header-nav ul {
    /* Existing navigation styles */
}

.nav-link {
    /* Existing navigation link styles */
}

/* Add other existing styles here */

/* -------------------------
   Informatie Page Specific Styles
-------------------------- */
.info-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.info-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-subheader {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #665848;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0d7cd;
    padding-bottom: 10px;
}

.info-body-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding-left: 20px;
}

.info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0a58a;
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .info-container {
        padding: 15px;
    }
    
    .info-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .info-subheader {
        font-size: 1.5rem;
    }
}

/* INFORMATION PAGE STYLES */
.info-main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.info-section-title {
    font-family: 'Forum', serif;
    font-size: 2.2rem;
    color: #848678;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.5px;
}

.info-address-box {
    background: #f8f5f2;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
    font-weight: 600;
    color: #4a4a4a;
    border: 1px solid #e0d7cd;
}

.info-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-grid-image:hover {
    transform: scale(1.02);
}

.info-contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-subheader {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.4rem;
    color: #665848;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.info-contact-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.info-contact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0a58a;
    font-size: 1.6rem;
    line-height: 1;
    top: -2px;
}

.info-travel-times {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    gap: 15px;
}

.info-travel-times li {
    padding: 15px;
    background: #f8f5f2;
    border-radius: 6px;
    border-left: 4px solid #c0a58a;
    font-weight: 500;
}

.info-body-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-route-instructions {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e0d7cd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-main-container {
        padding: 0 15px;
    }
    
    .info-section-title {
        font-size: 1.8rem;
    }
    
    .info-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-grid-image {
        height: 200px;
    }
    
    .info-contact-box {
        padding: 20px;
    }
    
    .info-contact-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-section-title {
        font-size: 1.6rem;
    }
    
    .info-body-text {
        font-size: 1rem;
    }
    
    .info-travel-times li {
        font-size: 0.95rem;
    }
}

/* Apply padding-left only for screens wider than 768px */
@media screen and (min-width: 768px) {
    .info-contact-text,
    .info-mededeelingen-text
    {
      padding-left: 8rem!important;
    }
  }

  @media screen and (min-width: 768px) {
    .info-transport-text,
    .info-dresscode-text {
      padding-right: 8rem!important;
    }
  }

/* INTRO TEXT SECTION */
.intro-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.intro-text-content {
  flex: 1;
}

.intro-text-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.intro-image {
  flex: 1;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
  }

  .intro-image {
    margin-top: 1.5rem;
  }
}

/* CENTERED CONTENT */
.centered-content {
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.centered-content p, 
.centered-content ul, 
.centered-content h2, 
.centered-content h3 {
    margin: 1rem 0;
}

.centered-content .info-slideshow-container {
    margin-top: 2rem;
}

.centered-content .info-contact-box,
.centered-content .info-transport-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .centered-content {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .centered-content {
        max-width: 80%;
    }
}

/* Optional: Adjust slideshow container for better presentation */
/* .info-slideshow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-slideshow {
    width: 100%;
}

.info-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.slide-caption {
    margin-top: 0.5rem;
}

.slide-caption .caption-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-caption .caption-text {
    font-size: 1rem;
    color: #555555;
} */

.info-contact-list li a {
    text-decoration: none;
    color: #000; /* Pas de kleur aan naar wens */
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px; /* Ruimte tussen icoon en tekst */
}

.info-contact-list li a i {
    color: #555; /* Kleur van de iconen */
}

.info-contact-list li a:hover {
    color: #007BFF; /* Kleur bij hover */
}

.info-contact-list li a:hover i {
    color: #0056b3; /* Kleur van iconen bij hover */
}

.contact-item {
    margin-bottom: 10px;
}

.contact-item a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-item a i {
    color: #555;
    min-width: 20px;
    text-align: center;
}

.contact-item a:hover {
    color: #007BFF;
}

.contact-item a:hover i {
    color: #0056b3;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
}

.info-section {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
}

.left-section {
    width: 150%;
}

.right-section {
    width: 50%;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .left-section,
    .right-section {
        width: 48%;
    }

    .left-section {
        text-align: left;
    }

    .right-section {
        text-align: left;
        margin-top: 0;
    }
}

/* Nieuwe aanpak voor de Vervoer-sectie */
/* Verwijder de fullwidth hacks en gebruik een pseudo-element voor de achtergrond */
.info-transport-section, .info-contact-section {
    position: relative;
    padding: 2rem 0; /* Pas eventueel de padding aan */
    /* Verwijderd: width, left en margin-left, zodat de inhoud ongestoord kan werken */
}

.info-transport-section::before, .info-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: rgb(132, 134, 120);
    z-index: -1;
}

/* Zorg er tevens voor dat de flexbox in de vervoersectie vergelijkbaar is met die van de Ceremoniemeesters */
.info-transport-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem; /* Zorgt voor een mooie ruimte tussen de kolommen */
}

/* Linker kolom: afbeelding */
.info-transport-image {
    flex: 1 1 40%;
    text-align: center;
    padding: 1rem;
}

.info-transport-image img {
    max-width: 80%;
    height: auto;
}

/* Rechter kolom: tekst */
.info-transport-text {
    flex: 1 1 55%;
    padding: 1rem;
}

/* Flexbox layout voor de Ceremoniemeesters sectie */
.info-contact-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Laat kolommen onder elkaar vallen op smallere schermen */
    gap: 2rem;
}

.info-contact-image {
    flex: 1 1 40%;
    text-align: right;
    padding: 1rem;
}

.info-contact-image img {
    max-width: 60%;
    height: auto;
}

.info-contact-text {
    flex: 1 1 55%;
    padding: 1rem;
}

/* Informatie Page - Dresscode Section */
.info-dresscode-section {
  padding: 2rem 0;
}

.info-dresscode-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-dresscode-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* Zodat de kolommen bij smallere schermen onder elkaar vallen */
}

/* Linker kolom: afbeelding */
.info-dresscode-image {
  flex: 1 1 40%;
  text-align: center;
  padding: 1rem;
}

.info-dresscode-image img {
  max-width: 200%;
  height: auto;
}

/* Rechter kolom: tekst */
.info-dresscode-text {
  flex: 1 1 55%;
  padding: 1rem;
} 

/* Huishoudelijke Mededelingen Section Styles */

/* Section container */
.info-mededeelingen-section {
    padding: 2rem 0;
  }
  
  /* Container to center the content and limit its width */
  .info-mededeelingen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Flex container for text and image columns */
  .info-mededeelingen-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  /* Styles for the text column */
  .info-mededeelingen-text {
    flex: 1 1 55%;
    padding: 1rem;
  }
  
  .info-mededeelingen-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #848678;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .info-mededeelingen-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #665848;
    margin: 1rem 0;
  }
  
  .info-mededeelingen-text p {
    line-height: 1.6em;
    margin: 1rem 0;
  }
  
  /* List styling */
  .info-mededeelingen-text .info-list {
    list-style: disc;
    padding-left: 20px;
  }
  
  .info-mededeelingen-text .info-list li {
    margin-bottom: 0.5rem;
  }
  
  /* Styles for the image column */
  .info-mededeelingen-image {
    flex: 1 1 40%;
    padding: 1rem;
    text-align: center;
  }
  
  .info-mededeelingen-image img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }
  
  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .info-mededeelingen-columns {
      flex-direction: column;
    }
    
    .info-mededeelingen-text,
    .info-mededeelingen-image {
      flex: 1 1 100%;
      padding: 0.5rem;
    }
    
    .info-mededeelingen-text h2 {
      text-align: center;
    }
  }

@media (max-width: 768px) {
  .info-dresscode-columns {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
    .info-contact-image,
    .info-contact-columns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0rem!important;
        /* Optionally, if the container has extra height, this centers the image vertically as well */
    }
    
    /* Optional: Ensure the image scales nicely */
    .info-contact-image img {
        max-width: 50%;
        height: auto;
    }
}

@media screen and (min-width: 768px) {
    .dresscode-text2 {
        margin-right: 5rem;
        margin-left: 5rem
    }
}

@media screen and (min-width: 768px) {
    .whatsapp-link {
        display: none;
    }
}


.add-to-home-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  
  .add-to-home {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .add-to-home img {
    width: 30px;
    height: 30px;
  }
  
  .add-to-home-tooltip {
    margin-top: 8px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    white-space: nowrap;
  }
  
  .add-to-home-container:hover .add-to-home-tooltip {
    opacity: 1;
    visibility: visible;
  }

  .background-image-container {
    text-align: center;
    margin: 20px 0;
}

.responsive-image {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* .info-dresscode-image { */
    /* Give it some width/height or it'll be 0x0 if empty. */
    /* width: 300px;
    height: 300px; */
  
    /* Apply the pattern from the SVG we defined above */
    /* background: url('#flowerPattern');
    background-repeat: repeat; */
  
    /* Adjust background sizing if desired */
    /* background-size: 100px 100px;  */
      /* or "cover", "contain", etc., depending on the effect */
  /* } */
  
/* Update Toaster Notification */
.update-toaster {
    position: fixed;
    top: 220px; /* Position below the header */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.update-toaster.visible {
    opacity: 1;
    visibility: visible;
}

.toaster-content {
    background-color: #665848;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    max-width: 90%;
}

.toaster-content:hover {
    background-color: #848678;
}

#close-toaster {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    line-height: 1;
}

@media (max-width: 768px) {
    .update-toaster {
        position: absolute;
        top: 200px;
    }
    
    .toaster-content {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* TIPS PAGE STYLES */
.tips-main-container {
    padding-top: 0px; /* Account for fixed header */
}

.tips-hero-section {
    background-color: rgb(132, 134, 120);
    padding: 60px 0;
    color: white;
}

.tips-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tips-hero-columns {
    display: flex;
    gap: 60px;
    align-items: center;
}

.tips-hero-image {
    flex: 0 0 400px;
}

.tips-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tips-hero-text {
    flex: 1;
}

.tips-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

.tips-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
}

/* Tips Content Section */
.tips-content-section {
    background-color: #fffdf4;
    padding: 80px 0;
}

.tips-content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tip-block {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tip-content {
    text-align: left;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tip-icon {
    font-size: 1.8rem;
    color: #665848;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(102, 88, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
}

.tip-icon::before {
    transform: translateY(-1px);
}

.tip-block:hover .tip-icon {
    background-color: rgba(102, 88, 72, 0.15);
    transform: scale(1.05);
}

.tip-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #665848;
    margin: 0;
    font-weight: 500;
}

.tip-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Tip Block Link Styling */
.tip-block-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tip-block-link:hover {
    text-decoration: none;
    color: inherit;
}

.tip-block-link .tip-block {
    cursor: pointer;
}

/* Responsive Design for Tips Page */
@media (max-width: 768px) {
    .tips-hero-columns {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
    
    .tips-hero-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .tips-title {
        font-size: 2.2rem;
    }
    
    .tips-intro-text {
        font-size: 1rem;
    }
    
    .tip-block {
        padding: 30px 20px;
    }
    
    .tip-header {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .tip-icon {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        padding-top: 5px;
    }
    
    .tip-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tips-hero-section {
        padding: 40px 0;
    }
    
    .tips-content-section {
        padding: 20px 0;
    }
    
    .tips-title {
        font-size: 1.8rem;
    }
    
    .tip-block {
        padding: 25px 15px;
    }
    
    .tip-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .tip-icon {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    
    .tip-title {
        font-size: 1.1rem;
    }
    
    .tip-description {
        font-size: 0.95rem;
    }
}

/* La Dolce Vita Section */
.dolce-vita-section {
    background-color: #fffdf4;
    padding: 0px 0 40px 0;
    text-align: center;
}

.dolce-vita-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #665848;
    font-style: italic;
    transform: rotate(-2deg);
    display: inline-block;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .dolce-vita-text {
        font-size: 2rem;
        transform: rotate(-1.5deg);
    }
}

@media (max-width: 480px) {
    .dolce-vita-text {
        font-size: 1.6rem;
        transform: rotate(-1deg);
    }
}
  