/* General Styles */
body {
    background-color: #000000; /* pure black */
    color: #fafafa;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Nicer default font */
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 16px; /* Base font size */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300; /* Lighter font weight for headings */
    color: #c8a45c; /* Main accent color */
}

h1 { font-size: 2.2em; margin-bottom: 0.5em; } /* Reduced from 2.5em */
h2 { font-size: 1.8em; margin-top: 1.5em; margin-bottom: 0.7em; border-bottom: 1px solid #c8a45c; padding-bottom: 0.3em; } /* Reduced from 2em */
h3 { font-size: 1.4em; margin-bottom: 0.5em; } /* Reduced from 1.5em */
h4 { font-size: 1.1em; color: #c8a45c; margin-bottom: 0.3em; } /* Reduced from 1.2em */

p {
    margin-bottom: 1em;
    font-size: 1em; /* Ensure consistent paragraph font size */
    text-align: justify;
}

a {
    color: #666;
    text-decoration: underline;
}

a:hover {
    color: #fafafa; /* White on hover for better contrast */
    text-decoration: underline;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Slight rounding for images */
}

/* Header & Navigation */
header {
    background: #1c1c1c; /* Slightly lighter than body for separation */
    color: #fafafa;
    padding: 15px 0; /* Adjusted padding */
    min-height: 60px; /* Adjusted min-height */
    border-bottom: 2px solid #c8a45c; /* Thinner border */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #branding #logo {
    height: 50px; /* Adjust as needed based on logo image */
    width: auto;
    vertical-align: middle;
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fafafa;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em; /* Slightly smaller nav font */
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav ul li a:hover, header nav ul li.current a {
    color: #c8a45c; /* Accent color on hover/current */
    border-bottom: 2px solid #c8a45c;
    text-decoration: none;  /* prevent underline on hover */
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none; /* Hidden by default */
    font-size: 30px;
    color: #fafafa;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section (Landing Page) */
.hero {
    text-align: center;
    padding: 80px 20px; /* Adjusted padding */
    color: #ffffff;
    position: relative; /* For overlay */
}

.hero .date-location {
    font-size: 1.5em; /* Adjusted font size */
    margin-bottom: 25px;
    color: #c8a45c; /* Accent color */
    text-shadow: 1px 1px 2px #000000;
    text-align: center;
}
.hero p.intro-text {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto;
    color: #e0e0e0;
}

/* Buttons */
.button, button, input[type="submit"], .button-link {
    display: inline-block;
    background-color: #c8a45c; /* Accent color */
    color: #000000; /* Black text for contrast */
    border: none;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1em; /* Adjusted font size */
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.button:hover, button:hover, input[type="submit"]:hover, .button-link:hover {
    background-color: #fafafa; /* White background on hover */
    color: #121212; /* Dark text on hover */
    text-decoration: none;
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Main Content Area */
main {
    padding: 20px 0;
}

section {
  /*  padding: 20px 0; */
  /*  margin-bottom: 20px; */
}

/* RSVP Page Specifics */
.rsvp-intro-text {
    font-size: 1em;
    margin-bottom: 20px;
}

.rsvp-form .form-group {
    margin-bottom: 20px;
}

.rsvp-form label {
    display: block;
    margin-bottom: 8px;
    color: #fafafa;
    font-weight: normal; /* Normal weight for labels */
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form input[type="tel"],
.rsvp-form textarea,
.rsvp-form input[type="number"] {
    width: min(440px, 94%);
    padding: 12px;
    margin-bottom: 5px; /* Reduced margin */
    border: 1px solid #c8a45c;
    border-radius: 4px;
    background-color: #1c1c1c;
    color: #fafafa;
    font-size: 1em;
}

.rsvp-form textarea {
    resize: vertical;
    min-height: 100px;
}

.rsvp-form .checkbox-group {
    display: flex; /* Align checkbox and label side-by-side */
    align-items: center;
    margin-bottom: 10px;
}

.rsvp-form input[type="checkbox"] {
    width: 20px; /* Larger checkbox */
    height: 20px; /* Larger checkbox */
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0; /* Prevent checkbox from shrinking */
}

.rsvp-form .checkbox-label {
    font-weight: normal;
    color: #fafafa;
    margin-bottom: 0; /* Remove margin from label when next to checkbox */
}


.when-where {
    background-color: #1c1c1c; /* Slightly lighter section background */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 5px solid #c8a45c; /* Accent border */
}
.when-where h3 {
    margin-top: 0;
    color: #c8a45c;
}

/* What to Expect Icons */
.expectation-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.expectation-item svg {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    fill: #c8a45c; /* Accent color for icons */
}

/* Dress Code Columns */
.dress-code-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
    margin-top: 20px;
}
.dress-code-column {
    flex-basis: 32%; /* Roughly one-third */
    background-color: #1c1c1c;
    padding: 15px;
    border-radius: 5px;
}

.dress-code-column h4 {
    margin-top: 0;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}
.dress-code-column p {
    color: #9da6ac;
}

/* Venue Info Page */
.venue-images {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.venue-images img {
    flex: 1; /* Distribute space */
    min-width: 200px; /* Minimum width before wrapping */
    object-fit: cover; /* Ensure images cover their area well */
}
.accommodation-section {
    display: flex;
    gap: 20px;
    align-items: center;
}
.accommodation-section .text-content { flex: 2; }
.accommodation-section .image-content { flex: 1; }
.accommodation-section img { border-radius: 5px; }


/* Travel Info Page */
.travel-info-section strong { /* Instead of headers for some items */
    color: #fafafa;
    font-weight: bold;
}

/* Sightseeing Section */
#sightseeing h3 { /* Example: "Sightseeing in the Kaszubian Region & Beyond" */
    margin-bottom: 15px;
}
#sightseeing ul {
    list-style-type: '❖ '; /* Custom bullet */
    padding-left: 25px;
}
#sightseeing li {
    margin-bottom: 8px;
}


/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid #c8a45c; /* Accent color border */
    color: #fafafa; /* Accent color text */
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row; /* Keep logo and hamburger side-by-side */
        justify-content: space-between;
    }
    header nav {
        display: none; /* Hide nav by default on mobile */
        position: absolute;
        top: 77px; /* Below header */
        left: 0;
        width: 100%;
        background-color: #1c1c1c; /* Match header background */
        flex-direction: column; /* Stack nav items */
        padding-bottom: 10px;
    }
    header nav.active {
        display: flex; /* Show when active */
    }
    header nav ul li {
        display: block;
        text-align: center;
        margin: 15px 0; /* Spacing for mobile nav items */
    }
    .hamburger-menu {
        display: block; /* Show hamburger icon */
    }

    .hero h1 { font-size: 2em; } /* Adjusted hero font sizes */
    .hero .date-location { font-size: 1.1em; }
    .hero p.intro-text { font-size: 1em; }

    .dress-code-container {
        flex-direction: column; /* Stack columns on smaller screens */
    }
    .dress-code-column {
        margin-bottom: 15px;
    }

    .accommodation-section {
        flex-direction: column;
    }
}
.mid-image {
  color: white;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;

}
.mid-image::before {
content: "";
  position: absolute;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.7);
/*  z-index: 1; */
}

.mid-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  box-sizing: border-box;
  margin-right: auto;
/*  padding: 24px 16px; */
    padding-right: 16px;
    padding-left: 16px;

  position: relative;
  z-index: 2;
}

h6 {
  margin: 0px 0px 16px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

h4 ~ p {
  margin-left: 2rem;
}

h4 ~ ul {
  margin-left: 4rem;
}
.info-icon {
  cursor: help;
  display: inline-block;
  margin-left: 5px;
  font-weight: bold;
}

.info-icon::after {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  background: #333;
  color: #fff;
  font-size: 0.8em;
  padding: 5px 10px;
  border-radius: 5px;
  max-width: 200px;
  z-index: 10;
}

.info-icon:hover::after {
  display: block;
}

.info-icon:active::after {
  display: block;
}

@media (max-width: 1130px) {
  .flex-section {
    flex-direction: column;
  }
}

.flex-section {
  display: flex;
  align-items: center;
  column-gap: 50px;

}
