:root {
    background: #181c1b;
    background-color: #181c1b;
    --primary-bg: #181c1b;
    --secondary-bg: #232926;
    --accent-bg: #25332e;
    --text-main: #e6e6e6;
    --text-light: #fff;
    --overlay-bg: rgba(30, 40, 35, 0.85);
    --card-bg: rgba(60, 80, 60, 0.3);
    --footer-bg: #1b2320;
    --header-bg: #223127;
    --underline: #7ecb8f;
    --font-size-mobile: 1rem;
    --font-size-mobile-small: 0.9rem;
}
body {
    margin: 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
}
.header {
    padding: 18px 0 10px 0;
    text-align: center;
    background: var(--header-bg);
    color: var(--text-light);
    font-size: 2rem;
    letter-spacing: 2px;
}
.footer {
    padding: 6px 0;
    text-align: center;
    background: var(--footer-bg);
    color: var(--text-main);
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.footer a {
    color: var(--text-light);
    font-size: smaller;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
}
#img-carousel,
.carousel-inner,
.carousel-item {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.carousel-item-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 50%;
    z-index: 0;
    filter: blur(4px) brightness(0.5);
    transform: scale(1.1);
}
.carousel-overlay {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background: var(--overlay-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2;
}
.carousel-text {
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    padding: 24px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.carousel-underline {
    width: 60px;
    height: 4px;
    background: var(--underline);
    margin: 18px auto 10px auto;
    border-radius: 2px;
}
.carousel-subtext {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: normal;
    opacity: 0.92;
    margin-top: 0;
    overflow-wrap: break-word;
}
.carousel-img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(60, 80, 60, 0.13);
    object-fit: cover;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
    gap: 18px;
    width: 100%;
    max-width: 800px;
}
.contact-bulletin {
    flex: 1 1 40%;
    min-width: 180px;
    background: var(--card-bg);
    color: var(--text-light);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 4px;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(60, 80, 60, 0.13);
    text-decoration: none;
}
.contact-bulletin a {
    color: var(--text-light);
    text-decoration: none;
}
@media (max-width: 600px) {
    body {
        font-size: var(--font-size-mobile);
        line-height: 1.5;
    }
    h1, h2 {
        font-size: var(--font-size-mobile-small);
    }
    .carousel-text {
        font-size: var(--font-size-mobile);
    }
    .contact-bulletin, .package-bulletin {
        font-size: var(--font-size-mobile-small);
    }
    .carousel-text {
        font-size: var(--font-size-mobile);
        padding: 12px;
    }
    .contact-grid {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .contact-bulletin {
        min-width: 0;
    }
    .package-grid {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .package-bulletin {
        min-width: 0;
        list-style-type: none;
    }
    .zigzag-row {
        flex-direction: column;
        gap: 24px;
        padding: 10px;
    }
    .zigzag-column-1, .zigzag-column-2 {
        max-width: 100%;
        flex: none;
    }
    .carousel-item-img{
        height: auto;
        object-fit: cover;
    }
    .zigzag-img {
        max-width: 100%;
        height: auto;
    }
    #img-carousel,
    .carousel-inner,
    .carousel-item {
        height: 100%;
    }
    .carousel-item-img {
        height: 100%;
    }
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
    gap: 18px;
    width: 50%;
    max-width: 800px;
}
.form-button {
    border: none; /* Remove border */
    background: rgba(81, 113, 97, 0.85); /* Use the underline color for a vibrant look */
    color: var(--text-light); /* Ensure text is visible */
    font-size: 1.2rem; /* Slightly larger font */
    padding: 12px 24px; /* Add padding for a better click area */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Indicate clickability */
    transition: background-color 0.3s, transform 0.2s; /* Smooth hover effects */
    text-decoration: none; /* Remove underline for links */
    display: inline-block; /* Ensure proper alignment */
}

.form-button:hover {
    background: rgba(98, 139, 119, 0.85); /* Slightly lighter green on hover */
    transform: scale(1.05); /* Subtle zoom effect */
}

.package-overlay {
    padding: 10px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
}
.package-grid {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}
.package-bulletin {
    flex: 1 1 40%;
    min-width: 180px;
    background: var(--card-bg);
    color: var(--text-light);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 4px 0 0 !important;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(60, 80, 60, 0.13);
}
.package-bulletin a {
    color: var(--text-light);
}
@media (max-width: 600px) {
    .package-grid {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .package-bulletin {
        min-width: 0;
    }
    .package-text {
        font-size: 1.3rem;
        padding: 12px;
    }
}

.package-subtext {
    padding-top: 30px;
    text-align: center;
}

.zigzag-container {
    padding: 48px 0;
    color: var(--text-main);
    background: var(--secondary-bg);
    transition: background 0.3s;
}
.zigzag-container:nth-of-type(even) {
    background: var(--accent-bg);  
}
.zigzag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
    flex-wrap: wrap;
}
.zigzag-column-1, .zigzag-column-2 {
    flex: 1 1 150px;
    min-width: 280px;
    max-width: 600px;
    box-sizing: border-box;
    text-align: left;
}

.carousel-zigzag-img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px
}

.zigzag-img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(60, 80, 60, 0.13);
    object-fit: cover;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}
@supports not (aspect-ratio: 16 / 9) {
    .zigzag-img {
        height: 0;
        padding-bottom: 56.25%;
        position: relative;
    }
    .zigzag-img[src] {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }
}
.zigzag-container h1 {
    color: var(--underline);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.zigzag-container p {
    color: #b6c2b6;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
@media screen and (max-width: 900px) {
    .zigzag-row {
        flex-direction: column;
        gap: 24px;
        padding: 10px;
    }
    .zigzag-column-1, .zigzag-column-2 {
        max-width: 100%;
    }

    .zigzag-column-1 h1 {
        text-align: center;
    }
}

.form-container {
    display: flex;
    flex-direction: column; /* Stack header and form vertically */
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: var(--accent-bg);
    text-align: center;
}

.form-container h1 {
    font-size: 2rem; /* Match top header font size */
    color: var(--text-light);
    letter-spacing: 2px; /* Match letter spacing */
    margin-bottom: 10px; /* Add spacing below header */
}

.form-container h2 {
    font-size: 1.5rem; /* Slightly smaller subheader */
    color: var(--text-main);
    margin-bottom: 20px; /* Add spacing below subheader */
}

.form-container iframe {
    background: white;
    border-radius: 10px
}
@media (max-width: 600px) {
    .form-container iframe {
        width: 400px;
    }
}
