@font-face {
    font-family: 'Optima';
    src: url('Optima.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-green: #2D5A27;
    --leaf-green: #487834;
    --dark-grey: #4A4A4A;
    --rust-pink: #B05B5B;
    --ivory-white: rgba(253, 251, 244, 0.9);
    --light-border: rgba(0, 0, 0, 0.08);
    --heading-font: 'Optima', sans-serif;
    --script-font: 'Optima', sans-serif;
    --body-font: 'Optima', sans-serif;
}

.text-success-premium {
    color: #2D5A27;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
}

.text-error-premium {
    color: #B05B5B;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
}

body {
    font-family: var(--body-font);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('../img/BG 1920x1080.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
}

/* Branding Header */
.branding {
    margin-top: 20px;
}

.branding-logo {
    max-width: 120px;
    height: auto;
}

.branding-sub-text {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    /* font-style: italic; */
    margin-top: 5px;
    color: #000;
    letter-spacing: 2px;
}

/* Hero Content */
.hero-section {
    min-height: 55vh;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.flower-icon-wrap {
    margin: 10px 0;
}

.flower-icon {
    font-size: 1.2rem;
    color: #E91E63;
}

.subheading-serif {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: #333;
    letter-spacing: 1px;
}

.date-highlight {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--rust-pink);
    font-weight: 600;
}

.location-highlight {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
}

/* Content Sections */
.content-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.registration-section {
    padding: 60px 0;
    background: transparent;
}

.registration-container {
    padding: 40px;
    border-radius: 30px;
}

.form-title {
    font-family: var(--heading-font);
    /* font-style: italic; */
    font-size: 2.2rem;
    color: #000;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #000;
}

.premium-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 20px;
}

.premium-input:focus {
    background: #fff;
    border-color: var(--leaf-green);
}

.btn-subscribe {
    background: linear-gradient(180deg, #6c9b4e 0%, #2D5A27 100%);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
    color: #fff;
}

/* Highlights Section (White with fade effect on sides) */
.highlights-section {
    padding: 40px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.5) 90%, rgba(255, 255, 255, 0.1) 100%);
    /* backdrop-filter: blur(4px); */
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
}

.highlight-item {
    padding: 20px 15px;
    height: 100%;
}

.border-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.highlight-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Video Section */
.video-section-flow {
    background: transparent;
    margin: 80px 0;
}

.video-inner-container {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

footer {
    padding: 40px 0;
    background: transparent;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    body {
        background-image: url('../img/mobile-bg.jpeg');
        background-size: cover;
        background-position: center;
    }

    /* Reduce Hero Spacing */
    .hero-section {
        min-height: auto;
        padding-top: 20px;
    }

    .branding-logo {
        max-width: 100px;
        height: auto;
    }


    .branding {
        margin-top: 10px;
        margin-bottom: 2rem !important;
    }

    .event-highlights {
        margin-top: 1.5rem !important;
    }

    .main-logo {
        max-width: 320px;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .subheading-serif {
        font-size: 1.2rem;
    }

    .date-highlight {
        font-size: 1.2rem;
    }

    .location-highlight {
        font-size: 0.95rem;
    }

    /* Reduce Registration Spacing */
    .registration-section {
        padding: 0px 0 30px 0;
    }

    .registration-container {
        padding: 20px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
    }

    .btn-subscribe {
        font-size: 1.1rem;
        padding: 10px 30px;
    }

    /* Reduce Highlights Spacing */
    .highlights-section {
        background: rgba(255, 255, 255, 0.9);
        padding: 10px 0;
        margin: 0 10px;
    }

    .highlight-item {
        padding: 10px 15px;
        border-right: none;
        border-bottom: 1px solid var(--light-border);
    }

    .highlight-title {
        font-size: 1rem;
    }

    .highlight-desc {
        font-size: 0.8rem;
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .icon-wrap {
        margin-bottom: 0.5rem !important;
    }

    /* Reduce Video Spacing */
    .video-section-flow {
        margin: 30px 0;
        padding: 0 15px;
    }

    .video-inner-container iframe {
        height: 250px;
    }

    footer {
        background-color: #333333af;
        padding: 16px 4px;
    }

    footer h6 {
        font-size: 14px;
    }
}