:root{
    --white: #ffffff;
    --black: #000000;
    --red: #CE0019;
    --red-dark: #A6000F;
    --gold: #D4B25A;
    --input-bg: #ffffff;
    --input-text: #1a1a1a;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body{
    background-color: var(--red);
    color: var(--white);
    margin: 0px;
}
h1{
    color: var(--white);
    font-size: clamp(48px, 5vw, 64px);
    font-family: 'Steelfish','Helvetica', sans-serif;
    margin: 0px;
}
h2{
    color: var(--white);
    font-size: clamp(36px, 5vw, 48px);
    font-family: 'Steelfish','Helvetica', sans-serif;
    margin: 0px;
}
p{
    color: var(--white);
    font-size: clamp(18px, 5vw, 20px);
    font-family: 'GothamBook';
    font-weight: 500;
    margin: 0px;
}
.footer-text p,
.footer-address p{
    font-size: clamp(14px, 3vw, 16px);
}
.extra-small{
    font-size: clamp(11px, 3vw, 12px) !important;
}
header{
    box-shadow: 0px 35px 14px rgba(0, 0, 0, 0.01), 0px 19px 12px rgba(0, 0, 0, 0.05), 0px 9px 9px rgba(0, 0, 0, 0.09), 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.header-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
header .header-logo img{
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
}

.header-logo{
    text-align: center;
}
.header-logo a{
    display: inline-block;
}
.header-regulament{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    text-decoration: none;
    font-family: 'Steelfish','Helvetica', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 5vw, 22px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-regulament:hover{
    text-decoration: underline;
}
.home-title{
    text-align: center;
    max-width: 580px;
    width: 100%;
    margin: auto;
    padding: 1rem;
}
.home-title h1{
    padding-bottom: 0.8rem;
}
.cards-wrapper{
    position: relative;
    width: 100%;
}
.pattern-mobile{
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: none;
    top: 10%;
    height: 260px;
    z-index: 1;
}
.pattern{
    display: none;
}
.cards-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding-bottom: 1.5rem;
    text-align: center;
    align-items: center;
}
.card-container{
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
}
.card-image img{
    max-width: 520px;
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}
.card-description{
    padding: 1rem 2rem;
    z-index: 2;
    position: relative;
}
.card-title{
    padding: 1rem 0rem;
}
.card-text{
    height: auto;
}
.card-description .btn{
    padding: 1rem 0rem;
}
.btn{
    text-decoration: none;
    color: var(--red);
    background-color: var(--white);
    max-width: 270px;
    width: 100%;
    display: block;
    padding: 1rem;
    margin: 0 auto;
    font-family: 'GothamBook' ,'Helvetica', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 5vw, 20px);
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.btn:hover{
    background-color: var(--gold);
    color: var(--red);
}
.btn.disabled,
.btn[aria-disabled="true"]{
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
}
.card-btn:has(.btn.disabled){
    cursor: not-allowed;
}
.btn.btn-outline{
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn.btn-outline:hover{
    background-color: var(--gold);
    color: var(--red);
    border-color: var(--gold);
}

footer{
    border-top: 1px solid var(--white);
    padding: 1rem;
}
.footer-wrapper{
    max-width: 1600px;
    width: 100%;
    margin: auto;
}
.footer-container-logo-mobile{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-logo{
    max-width: 126px;
    width: 100%;
}
.social-icons img{
    max-height: 30px;
    width: 100%;
}
.social-icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
}
.social-icons-desktop{
    display: none;
}
.footer-container-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0rem;
}
.footer-link{
    font-family: 'Steelfish','Helvetica', sans-serif;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(18px, 5vw, 20px);
}
.footer-container-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-icons-container{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-icons{
    display: block;
    height: 20px;
}
.footer-icons-text{
    display: block;
    margin-bottom: 1rem;
}
.footer-text{
    text-align: center;
}
.footer-address{
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.footer-address p{
    padding-top: 1rem;
}
.logo-footer-desktop{
    display: none;
}
@media only screen and (min-width: 768px) {
    .home-title{
        padding: 32px 16px;
    }
    .cards-container{
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .card-text{
        height: 120px;
    }
    .pattern-mobile{
        display: none;
    }
    .pattern{
        position: absolute;
        display: block;
        top: 10%;
        width: 100%;
        z-index: 1;
        height: 300px;
    }
    footer{
        padding: 2rem;
    }
    .footer-container-logo-mobile{
        display: none;
    }
    .social-icons-desktop{
        display: flex;
    }
    .footer-container-links{
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }
    .footer-container-text{
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    .footer-icons{
        display: block;
        height: 18px;
    }
    .footer-icons{
        display: inline-block;
    }
    .footer-icons-text{
        display: inline;
    }
    .logo-footer-desktop{
        display: block;
    }
    .footer-address{
        text-align: left;
    }
    .footer-text{
        text-align: left;
    }
    .footer-icons-container{
        display: flex;
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .footer-icons{
        margin-bottom: 0.7rem;
    }
    .footer-container-text{
        text-align: left;
    }
}
@media only screen and (min-width: 1200px) {
    .home-title{
        padding: 4rem 1rem;
    }
    .cards-container{
        gap: 5rem;
        padding-bottom: 3rem;
    }
    .card-text{
        height: 80px;
    }
    .pattern{
        height: 400px;
    }
    .footer-container-text{
        gap: 5rem;
    }
}



.untold-page{
    width: 100%;
    margin: 0;
    padding: 0;
}


.untold-hero{
    padding: 0;
    background-color: #BE0219;
}
.untold-hero-inner{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.untold-hero-text{
    text-align: left;
    padding: 1.5rem 1rem 2rem;
    order: 1;
}
.untold-hero-text .card-date{
    font-family: 'GothamBook', 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: 0.75rem;
}
.untold-hero-title{
    font-family: 'Steelfish','Helvetica', sans-serif;
    color: var(--white);
    font-size: clamp(40px, 7vw, 56px);
    line-height: 1;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}
.untold-hero-copy{
    font-family: 'GothamBook';
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.45;
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.untold-hero-cta{
    margin: 0;
}
.untold-hero-image{
    position: relative;
    width: 100%;
    line-height: 0;
    order: 0;
}
.untold-hero-image img{
    display: block;
    width: 100%;
    height: auto;
}


.untold-steps{
    padding: 2.5rem 1rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
}
.untold-section-title{
    text-align: center;
    text-transform: uppercase;
    font-family: 'Steelfish','Helvetica', sans-serif;
    font-size: clamp(32px, 6vw, 44px);
    margin: 0 0 1.5rem 0;
}
.untold-steps-list{
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    width: 100%;
}
.untold-step{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.4rem;
    align-items: center;
}
.untold-step-number{
    font-family: 'GothamBook', 'Helvetica', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 64px;
    line-height: 1;
    text-align: center;
    text-shadow: 3px 5px 0 rgba(0,0,0,0.28);
}
.untold-step-text{
    font-family: 'GothamBook';
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.45;
    margin: 0;
}


.untold-form-section{
    padding: 2rem 1rem;
    max-width: 560px;
    margin: 0 auto;
}
.untold-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row{
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-label{
    font-family: 'GothamBook';
    font-weight: 700;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--white);
}
.form-required{
    color: var(--gold);
    margin-left: 4px;
    font-weight: 700;
}
.form-required-note{
    font-family: 'GothamBook';
    font-size: clamp(12px, 3vw, 13px);
    color: var(--white);
    margin: 0.25rem 0 0.25rem;
    opacity: 0.9;
}
.form-input{
    width: 100%;
    padding: 0.95rem 1rem;
    background: var(--input-bg);
    color: var(--input-text);
    border: 2px solid transparent;
    font-family: 'GothamBook';
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus{
    border-color: var(--gold);
}
.form-input.is-invalid{
    border-color: #FFD400;
}
.form-row-honeypot{
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-checkbox{
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: 'GothamBook';
    font-size: clamp(13px, 3.5vw, 14px);
    line-height: 1.45;
    padding: 0.25rem 0;
}
.form-checkbox input[type="checkbox"]{
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--white);
    cursor: pointer;
}
.form-checkbox label{
    cursor: pointer;
    color: var(--white);
}
.form-checkbox a{
    color: var(--white);
    text-decoration: underline;
}
.untold-form-submit{
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'GothamBook' ,'Helvetica', sans-serif;
}
.untold-form-submit[disabled]{
    opacity: 0.6;
    cursor: not-allowed;
}


.modal{
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.is-open{
    display: flex;
}
.modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}
.modal-card{
    position: relative;
    background: var(--white);
    color: var(--red);
    max-width: 460px;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: modal-pop 180ms ease-out;
}
@keyframes modal-pop{
    from{ opacity: 0; transform: translateY(8px) scale(0.98); }
    to  { opacity: 1; transform: translateY(0)   scale(1); }
}
.modal-close{
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: 0;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}
.modal-close:hover{ color: var(--red-dark); }
.modal-icon{
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Steelfish','Helvetica', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}
.modal--success .modal-icon{ background: #2BAE66; }
.modal--success .modal-icon::before{ content: "✓"; }
.modal--error   .modal-icon{ background: var(--red); }
.modal--error   .modal-icon::before{ content: "!"; }
.modal--info    .modal-icon{ background: var(--gold); }
.modal--info    .modal-icon::before{ content: "i"; }
.modal-title{
    font-family: 'Steelfish','Helvetica', sans-serif;
    color: var(--red);
    font-size: clamp(26px, 6vw, 32px);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}
.modal-message{
    color: var(--input-text);
    font-family: 'GothamBook';
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.5;
    margin: 0 0 1rem;
}
.modal-code{
    color: #888;
    font-family: 'GothamBook';
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 0 1rem;
    text-transform: uppercase;
}
.modal-code:empty{ display: none; }
.modal-ok{
    background: var(--red);
    color: var(--white);
    max-width: 220px;
    margin: 0 auto;
    cursor: pointer;
    border: none;
    font-family: 'GothamBook' ,'Helvetica', sans-serif;
}
.modal-ok:hover{
    background: var(--gold);
    color: var(--red);
    border: none;
}



.age-gate-page{
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}
.age-gate-inner{
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.age-gate-title{
    font-family: 'Steelfish','Helvetica',sans-serif;
    color: var(--white);
    font-size: clamp(28px, 5.5vw, 42px);
    line-height: 1.1;
    margin: 0 0 1rem;
    text-transform: uppercase;
}
.age-gate-subtitle{
    color: var(--white);
    font-family: 'GothamBook';
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.45;
    margin: 0 auto 1.5rem;
    max-width: 520px;
}
.age-gate-error{
    background: rgba(0,0,0,0.22);
    color: var(--white);
    font-family: 'GothamBook';
    font-size: clamp(13px, 3vw, 14px);
    padding: 0.75rem 1rem;
    margin: 0 auto 1.25rem;
    max-width: 480px;
    border-radius: 8px;
}
.age-gate-remember{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--white);
    font-family: 'GothamBook';
    font-size: clamp(12px, 3vw, 13px);
    line-height: 1.4;
    margin: 0 auto 1.25rem;
    cursor: pointer;
    max-width: 520px;
}
.age-gate-remember input[type="checkbox"]{
    width: 16px;
    height: 16px;
    accent-color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
}
.age-gate-inputs{
    position: relative;
    height: 56px;
    margin: 0 auto 1.5rem;
    max-width: 270px;
    width: 100%;
}
.age-gate-input{
    position: absolute;
    inset: 0;
    background: var(--white);
    color: var(--input-text);
    border: 2px solid transparent;
    padding: 0.75rem 1rem;
    font-family: 'GothamBook';
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 10px;
    outline: none;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
    -webkit-appearance: none;
    appearance: none;
}
.age-gate-input.is-active{
    opacity: 1;
    pointer-events: auto;
}
.age-gate-input:focus{ border-color: var(--gold); }
.age-gate-input::placeholder{
    color: #888;
    letter-spacing: 3px;
}


@media only screen and (min-width: 768px) {
    .untold-page{ padding: 0; }

    
    .untold-hero-inner{
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    .untold-hero-text{
        flex: 1;
        order: 0;
        padding: 3rem 2rem 3rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .untold-hero-image{
        flex: 1;
        order: 1;
        padding: 0;
    }
    .untold-hero-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    
    .untold-steps{ padding: 3rem 2rem 1.5rem; }
    .untold-steps-list{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        align-items: center;
        max-width: 1200px;
    }
    .untold-step{
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 0.6rem;
    }
    .untold-step-number{ font-size: 80px; }

    .untold-form-section{ padding: 2.5rem 1rem; }
}
@media only screen and (min-width: 1200px) {
    .untold-hero-title{ font-size: 60px; }
    .untold-step-number{ font-size: 88px; }
}

.arhiva-page{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
.arhiva-hero{
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 1rem;
}
.arhiva-hero h1{
    font-family: 'Steelfish','Helvetica', sans-serif;
    color: var(--white);
    font-size: clamp(40px, 7vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}
.arhiva-hero p{
    font-family: 'GothamBook';
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.5;
}
.arhiva-cards-section{
    padding: 0 0.5rem;
}
.arhiva-cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.arhiva-card{
    border: 2px solid var(--white);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: transparent;
}
.arhiva-card-date{
    font-family: 'GothamBook';
    font-weight: 700;
    font-size: clamp(13px, 3vw, 14px);
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
}
.arhiva-card-title{
    font-family: 'Steelfish','Helvetica', sans-serif;
    color: var(--white);
    font-size: clamp(24px, 5vw, 28px);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}
.arhiva-card-ctas{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}
.arhiva-card-ctas .btn{
    max-width: none;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    .arhiva-page{ padding: 2.5rem 2rem 4rem; }
    .arhiva-cards{
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .arhiva-card{ padding: 2rem 1.5rem; }
    .arhiva-card-ctas{
        flex-direction: row;
        gap: 0.75rem;
    }
    .arhiva-card-ctas .btn{
        flex: 1;
        padding: 0.85rem 0.5rem;
        font-size: clamp(14px, 2vw, 16px);
    }
}
@media only screen and (min-width: 1200px) {
    .arhiva-hero{ margin-bottom: 3.5rem; }
    .arhiva-card-title{ font-size: 30px; }
}
