@font-face {
    font-family: 'TAN - PEARL';
    src: url('../fonts/tan-pearl.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bona Nova', 'Georgia', serif;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px;
    position: relative;
    z-index: 2;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 64px;
    box-shadow: 0px 16px 32px 0px #DC2B7114;
    margin: 20px 0;
}

h1 {
    font-family: 'TAN - PEARL', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #F75198;
    margin-bottom: 25px;
}

h2 {
    font-family: 'TAN - PEARL', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #666;
    margin-bottom: 35px;
}

h3 {
    font-family: 'TAN - PEARL', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #F75198;
    margin-bottom: 25px;
}

.main-text {
    margin-bottom: 30px;
}

.main-text p {
    font-family: 'Bona Nova', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: bottom;
    color: #4a4a4a;
    margin-bottom: 24px;
    text-align: justify;
}

.highlight-date {
    color: #F75198;
    font-weight: 700;
}

.benefits-section {
    margin-bottom: 35px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-family: 'Bona Nova', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: bottom;
    color: #4a4a4a;
    margin-bottom: 18px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.star-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.closing-section {
    margin-bottom: 15px;
}

.closing-section p {
    font-family: 'Bona Nova', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: bottom;
    color: #4a4a4a;
    margin-bottom: 24px;
    text-align: justify;
}

.cta-section {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

._form_33 {
    background: transparent;
    padding: 0px 20px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

._form_33 ._form_element {
    position: relative;
    margin-bottom: 25px;
}

._form_33 input[type="text"],
._form_33 input[type="email"] {
    width: 100%;
    padding: 22px 20px 8px 20px;
    border: 2px solid #333;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    box-sizing: border-box;
    background: transparent;
    color: #6D6464;
    outline: none;
    transition: all 0.3s ease;
}

._form_33 input[type="text"]:focus,
._form_33 input[type="email"]:focus {
    border-color: #F75198;
}

._form_33 input[type="text"]::placeholder,
._form_33 input[type="email"]::placeholder {
    opacity: 0;
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    z-index: 10;
}

.floating-label.active {
    top: 0px;
    transform: translateY(0);
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: #F75198;
}

._form_33 input[type="submit"],
._form_33 button[type="submit"] {
    background: #cccccc;
    color: white;
    border: none;
    width: 100%;
    height: 56px;
    padding: 15px 32px;
    border-radius: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-transform: uppercase;
    cursor: not-allowed;
    margin: 10px 0;
    opacity: 0.6;
}

._form_33 input[type="submit"].enabled,
._form_33 button[type="submit"].enabled {
    background: #F75198;
    cursor: pointer;
    opacity: 1;
}

._form_33 input[type="submit"].enabled:hover,
._form_33 button[type="submit"].enabled:hover {
    background: white;
    color: #F75198;
    border: 2px solid #F75198;
}

._form_33 ._form_element._field_checkbox {
    margin: 20px 0;
}

._form_33 input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

._form_33 p,
._form_33 .html-code,
._form_33 ._form_element p,
._form_33 ._form_element span,
._form_33 ._form_element div {
    font-family: 'Bona Nova', serif;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

._form_33 a {
    color: #F75198;
    text-decoration: underline;
}

._form_33 ._form_element label:not(._form_element._field_checkbox label) {
    display: none;
}

._form_33 ._form_element._field_checkbox label {
    position: static;
    transform: none;
    font-family: 'Bona Nova', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    text-align: left;
}

._form_33 ._form_element._field_checkbox input[type="checkbox"] {
    margin-top: 30px;
    width: 18px;
    height: 18px;
    accent-color: #F75198;
    flex-shrink: 0;
}

._form_33 ._form-branding {
    display: none !important;
}

._form_33 ._form_element._x82120379,
._form_33 .form_element._x82120379,
._form_33 ._x82120379 {
    display: none !important;
}

._form_33 ._form_element {
    margin-bottom: 15px;
}

._form_33 .datetime-info {
    margin-bottom: 25px;
    text-align: center;
}

._form_33 .datetime-text p {
    font-size: 20px;
    margin: 0;
    font-size: 36px;
    font-weight: 100;
}

._form_33 ._form_element._clear {
    clear: both;
}

@media (max-width: 768px) {
    .content-card {
        padding: 25px;
        margin: 10px 0;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.1em;
        line-height: 30px;
    }
    
    .main-text p,
    .benefits-list li,
    .closing-section p {
        font-size: 1em;
        text-align: left;
    }
    
    ._form_33 {
        padding: 0px 20px;
        max-width: 100%;
    }
    
    ._form_33 input[type="text"],
    ._form_33 input[type="email"] {
        font-size: 16px;
        padding: 20px 20px 6px 20px;
    }
    
    .floating-label {
        left: 20px;
        font-size: 14px;
    }
    
    .floating-label.active {
        font-size: 10px;
    }
    
    ._form_33 input[type="submit"],
    ._form_33 button[type="submit"] {
        font-size: 18px;
        padding: 12px 25px;
    }
    
    ._form_33 .datetime-text p {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1em;
        line-height: 30px;
    }
    
    ._form_33 {
        padding: 0px 20px;
    }
    
    ._form_33 input[type="text"],
    ._form_33 input[type="email"] {
        font-size: 14px;
        padding: 18px 20px 5px 20px;
    }
    
    .floating-label {
        left: 20px;
        font-size: 12px;
    }
    
    .floating-label.active {
        font-size: 9px;
    }
    
    ._form_33 input[type="submit"],
    ._form_33 button[type="submit"] {
        font-size: 16px;
        padding: 10px 20px;
        height: 48px;
    }
    
    ._form_33 .datetime-text p {
        font-size: 22px;
    }
    
    .star-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
}

._form-thank-you {
    font-family: 'Bona Nova', serif;
    padding-top: 10px;
    color: #4a4a4a;
}

.images-section {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.image-container {
    flex: 1;
    max-width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .images-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .video-section {
        margin: 30px 0;
    }
}

.video-section {
    margin: 30px 0;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 🍪 Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F75198;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#cookie-consent-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text h3 {
    font-family: 'TAN - PEARL', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.cookie-consent-text p {
    font-family: 'Bona Nova', serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.cookie-consent-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 32px;
    border: none;
    border-radius: 16px;
    height: 56px;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-primary {
    background: white;
    color: #F75198;
    border: 2px solid #F75198;
}

.btn-primary:hover {
    background: #F75198;
    color: white;
    border: 2px solid white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #F75198;
}

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F75198;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0.95;
}

.youtube-play-button {
    margin-bottom: 20px;
}

.youtube-consent-text h4 {
    font-family: 'TAN - PEARL', serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.youtube-consent-text p {
    font-family: 'Bona Nova', serif;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 400px;
}

.youtube-consent-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 32px;
    background: white;
    color: #F75198;
    border: none;
    border-radius: 16px;
    height: 56px;
    gap: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

.youtube-consent-btn:hover {
    background: #F75198;
    color: white;
    border: 2px solid white;
}

@media (max-width: 768px) {
    /* Video Section Mobile */
    .video-section {
        margin: 20px 0;
    }
    
    .video-container {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    /* YouTube Overlay Mobile */
    .youtube-play-button {
        margin-bottom: 5px;
    }
    
    .youtube-play-button svg {
        width: 60px;
        height: 45px;
    }
    
    .youtube-consent-text {
        padding: 0 5px;
    }
    
    .youtube-consent-text h4 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .youtube-consent-text p {
        font-size: 16px;
        margin-bottom: 5px;
        max-width: 350px;
        line-height: 1.5;
    }
    
    .youtube-consent-btn {
        font-size: 16px;
        padding: 15px 32px;
        height: 56px;
        max-width: 280px;
        margin-top: 5px;
    }
    
    /* Cookie Consent Mobile */
    #cookie-consent-banner {
        padding: 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-consent-text h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .cookie-consent-text p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 16px;
        padding: 15px 32px;
        height: 56px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    footer #cookie-settings {
        font-size: 18px;
        padding: 12px 25px;
        height: 56px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .video-section {
        margin: 15px 0;
    }
    
    .youtube-play-button svg {
        width: 40px;
        height: 30px;
    }
    
    .youtube-consent-text h4 {
        font-size: 18px;
    }
    
    .youtube-consent-text p {
        font-size: 12px;
        max-width: 250px;
    }
    
    .youtube-consent-btn {
        font-size: 12px;
        padding: 10px 20px;
        height: 40px;
    }
    
    #cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-text h3 {
        font-size: 18px;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
        height: 48px;
    }
    
    footer #cookie-settings {
        font-size: 16px;
        padding: 10px 20px;
        height: 48px;
    }
}

footer {
    text-align: center;
    padding-bottom: 24px;
    border-top: 1px solid #f0f0f0;
}

footer #cookie-settings {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    background: #F75198;
    color: white;
    text-decoration: none;
    padding: 15px 32px;
    border: 2px solid #F75198;
    border-radius: 16px;
    height: 56px;
    gap: 10px;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
}

footer #cookie-settings:hover {
    background: white;
    color: #F75198;
    border: 2px solid #F75198;
}

/* Desktop and Tablet Responsive */
@media (min-width: 769px) {
    /* Cookie Consent Desktop */
    #cookie-consent-banner {
        padding: 20px;
    }
    
    .cookie-consent-content {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-consent-text h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .cookie-consent-text p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .cookie-consent-buttons {
        flex-direction: row;
        gap: 12px;
        width: auto;
        flex-shrink: 0;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 16px;
        padding: 15px 32px;
        height: 56px;
        width: auto;
        margin: 0;
        white-space: nowrap;
    }
    
    /* YouTube Overlay Desktop */
    .youtube-play-button svg {
        width: 68px;
        height: 48px;
    }
    
    .youtube-consent-text {
        padding: 0;
    }
    
    .youtube-consent-text h4 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .youtube-consent-text p {
        font-size: 18px;
        margin-bottom: 20px;
        max-width: 400px;
    }
    
    .youtube-consent-btn {
        font-size: 18px;
        padding: 15px 30px;
        height: 56px;
        max-width: none;
    }
    
    /* Footer Desktop */
    footer #cookie-settings {
        font-size: 14px;
        padding: 15px 32px;
        height: 56px;
        width: auto;
        max-width: none;
    }
}

