:root {
    --bg-color: #bfff73;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --accent-color: #d1a3a4; /* Dusty Rose */
    --accent-hover: #b48b8c;
    --light-gray: #f5f5f5;
    --font-primary: 'Noto Serif Display', serif;
    --font-secondary: 'Noto Serif Display', serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-primary);
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3.5rem; /* Adjusted size for balance */
    font-weight: 900; /* Bolder weight */
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    height: 3px;
    background-color: #bfff73;
    margin: 1rem auto 0;
}

/* --- Icons --- */
[class^="icon-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    margin-right: 0.5em;
    vertical-align: -0.125em;
}
.icon-location {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23777"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}
.icon-calendar {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23777"><path d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* --- Layout & Header --- */
/* Events Section */
.events-section {
    background-color: #bfff73;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden; /* To keep image corners rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Needed for the sold-out banner */
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.event-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #333;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #555;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
}


.event-footer {
    margin-top: auto; /* Pushes footer to the bottom */
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Space between items */
}


.event-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center; /* Center the price */
    width: 100%;
}



.btn-buy, .btn-directions {
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.2s ease;
    width: 100%; /* Make buttons full-width */
    box-sizing: border-box;
}

.btn-buy {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-buy:hover { background-color: var(--accent-hover); }

.sold-out-banner {
    position: absolute;
    top: 20px;
    right: -45px;
    background-color: #e84393; /* A strong pink */
    color: white;
    padding: 8px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.btn-directions {
    background-color: #28a745;
    color: #fff;
}
.btn-directions:hover { background-color: #218838; }

.event-card p {
    flex-grow: 1;
}


.event-card .btn-buy {
    background-color: #e84393;
    color: #fff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


.main-header {
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #bfff73;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.logo {
    width: 240px;
    height: auto;
}

.mobile-nav-toggle {
    display: none;
}

/* --- Hero Section --- */
.hero {
    height: 75vh; /* Reduced height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #14603e;
    color: white;
    position: relative;
}


.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 5rem); /* min, preferred, max */
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

/* --- Services Teaser --- */
.service-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-icon {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wedding-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1a3a4'%3E%3Cpath d='M12,2C7.03,2,3,6.03,3,11c0,3.8,2.4,7.02,5.76,8.28l0.24,0.09V20h6v-0.63l0.24-0.09C18.6,18.02,21,14.8,21,11C21,6.03,16.97,2,12,2z M12,4c3.86,0,7,3.14,7,7c0,2.79-1.64,5.2-4,6.32V16h-6v1.32C6.64,16.2,5,13.79,5,11C5,7.14,8.14,4,12,4z'/%3E%3C/svg%3E");
}

.event-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1a3a4'%3E%3Cpath d='M19,3h-1V1h-2v2H8V1H6v2H5C3.89,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V8h14V19z M9,10H7v2h2V10z M13,10h-2v2h2V10z M17,10h-2v2h2V10z M9,14H7v2h2V14z M13,14h-2v2h2V14z M17,14h-2v2h2V14z'/%3E%3C/svg%3E");
}

.bespoke-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1a3a4'%3E%3Cpath d='M12,22c4.97,0,9-4.03,9-9c-4.97,0-9,4.03-9,9c0,4.97,4.03,9,9,9C16.97,13,12.94,9,7.97,9c0,4.97,4.03,9,9,9C21,13.03,16.97,9,12,9c-4.97,0-9,4.03-9,9C7.03,22,12,17.97,12,13c0-4.97-4.03-9-9-9C3,4.03,7.03,0,12,0c4.97,0,9,4.03,9,9C16.03,0,12,4.03,12,9'/%3E%3C/svg%3E");
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-cta:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

/* --- Gallery --- */
.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(209, 163, 164, 0.3); /* Accent color with opacity */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 5px;
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.masonry-item:hover::before {
    opacity: 1;
}

/* --- About Section --- */
.about-section {
    padding: 2rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-photo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    margin: 0 auto;
}

.about-photo img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Instagram Feed --- */
.instagram-feed {
    flex: 2;
    min-width: 300px;
}

.instagram-feed h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.instagram-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.instagram-placeholder {
    height: 150px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-placeholder:hover {
    transform: scale(1.05);
}

.instagram-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: center;
}

.instagram-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1a3a4'%3E%3Cpath d='M12,2.162c3.204,0,3.584,0.012,4.849,0.07c1.308,0.06,2.655,0.358,3.608,1.311c0.962,0.962,1.251,2.296,1.311,3.608c0.058,1.265,0.07,1.645,0.07,4.849c0,3.204-0.012,3.584-0.07,4.849c-0.059,1.301-0.364,2.661-1.311,3.608c-0.962,0.962-2.295,1.251-3.608,1.311c-1.265,0.058-1.645,0.07-4.849,0.07s-3.584-0.012-4.849-0.07c-1.291-0.059-2.669-0.371-3.608-1.311c-0.957-0.957-1.251-2.304-1.311-3.608c-0.058-1.265-0.07-1.645-0.07-4.849c0-3.204,0.012-3.584,0.07-4.849c0.059-1.296,0.367-2.664,1.311-3.608c0.96-0.96,2.299-1.251,3.608-1.311C8.416,2.174,8.796,2.162,12,2.162 M12,0C8.741,0,8.332,0.014,7.052,0.072C5.197,0.157,3.355,0.673,2.014,2.014C0.668,3.36,0.157,5.198,0.072,7.052C0.014,8.332,0,8.741,0,12c0,3.259,0.014,3.668,0.072,4.948c0.085,1.853,0.603,3.7,1.942,5.038c1.345,1.345,3.186,1.857,5.038,1.942C8.332,23.986,8.741,24,12,24c3.259,0,3.668-0.014,4.948-0.072c1.854-0.085,3.698-0.602,5.038-1.942c1.347-1.347,1.857-3.184,1.942-5.038C23.986,15.668,24,15.259,24,12c0-3.259-0.014-3.668-0.072-4.948c-0.085-1.855-0.602-3.698-1.942-5.038c-1.343-1.343-3.189-1.858-5.038-1.942C15.668,0.014,15.259,0,12,0z'/%3E%3Cpath d='M12,5.838c-3.403,0-6.162,2.759-6.162,6.162c0,3.403,2.759,6.162,6.162,6.162s6.162-2.759,6.162-6.162C18.162,8.597,15.403,5.838,12,5.838z M12,16c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S14.209,16,12,16z'/%3E%3Ccircle cx='18.406' cy='5.594' r='1.44'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Footer --- */
.main-footer {
    padding: 3rem 2rem;
    background-color: white;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
}

/* --- SumUp Card Element Styling --- */
#sumup-card {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 1rem; /* Add some space below the card element */
}

/* --- Booking Modal --- */

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
}

.payment-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
    border-radius: 5px;
}

#booking-feedback {
    margin-top: 1rem;
    font-weight: bold;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
}

#modal-event-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

#modal-event-title {
    margin: 0;
}

.payment-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
    border-radius: 5px;
}

#booking-feedback {
    margin-top: 1rem;
    font-weight: bold;
}

/* --- Sticky Navigation --- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 252, 249, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #222;
}

input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e3e0d6;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    color: #111;
    font-family: 'Syne', sans-serif; /* Changed to Syne for a cohesive look */
    box-sizing: border-box;
    transition: border-color 0.2s;
}

input:focus, textarea:focus {
    border-color: #b49c7e;
    outline: none;
}

button[type="submit"] {
    background: #111;
    color: #fffdfa;
    border: none;
    border-radius: 5px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #b49c7e;
    color: #111;
}

.form-feedback {
    margin: 12px 0 0 0;
    font-size: 1.03rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 5px;
    display: none;
}

.form-feedback.success {
    background: #e8ffe5;
    color: #206c2c;
    border: 1px solid #a3e5b2;
    display: block;
}

.form-feedback.error {
    background: #ffeaea;
    color: #b80000;
    border: 1px solid #f5b5b5;
    display: block;
}

.form-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 10px;
}

footer {
    margin-top: 6rem; /* Adjusted for fixed header */
    color: #888;
    font-size: 0.93rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        width: 150px;
    }

    .main-nav ul {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        padding: min(20vh, 10rem) 2em;
        background: hsl(0 0% 100% / 0.1);
        backdrop-filter: blur(1rem);
        transform: translateX(100%);
        transition: transform 350ms ease-out;
    }

    .main-nav ul[data-visible="true"] {
        transform: translateX(0%);
    }

    .main-nav li {
        margin: 1rem 0;
    }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        z-index: 9999;
        background-color: transparent;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        width: 2rem;
        height: 2rem;
        border: 0;
        top: 2rem;
        right: 2rem;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    }
}

@media (max-width: 650px) {
    .container {
        max-width: 98vw;
        padding: 18px 2vw 18px 2vw;
    }
    .logo {
        width: 90px;
    }
    h1 {
        font-size: 2rem;
    }
}
