@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

:root {
    --accent: #D90D32;
    --light: #F5F4EF;
    --dark0: #D9D6CE;
    --dark: #2A2928;
    --dark2: #000015;
    --h1d: 96px;
    --h1m: 70px;
    --h2d: 44px;
    --h2m: 41px;
    --h3d: 36px;
    --h3m: 33px;
    --h4d: 28px;
    --h4m: 25px;
    --h5d: 23px;
    --h5m: 20px;
    --pd: 17px;
    --pm: 15px;
    --nav-height: 73px;
    --nav-transition: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.2;
    font-family: inter;
    scroll-behavior: smooth;
    letter-spacing: -0.01em;
}

html,
body {
    overflow-x: hidden;
    background: var(--light);
    color: var(--dark);
}




/* Navigation */
.menu-btn {
    position: fixed;
    background: none;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    background-color: var(--dark2);
}

.menu-btn:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.menu-btn .material-symbols-outlined {
    color: var(--light);
    font-size: 35px;
    font-weight: 300;
}

.close-icon {
    display: none;
}

.menu-overlay {
    position: fixed;
    width: auto;
    height: auto;
    background: var(--dark2);
    border-radius: 27px;
    padding: 50px 50px 25px 25px;
    top: 23px;
    right: 23px;
    left: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-btn:hover+.menu-overlay,
.menu-overlay:hover {
    opacity: 1;
    visibility: visible;
}

.menu-list {
    list-style: none;
    text-align: left;
}

.menu-list>li {
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.menu-list>li>a {
    font-family: 'TikTok Sans', Arial, sans-serif;
    color: var(--light);
    text-decoration: none;
    font-size: var(--h4d);
    font-weight: 400;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 8px 12px;
    text-transform: uppercase;
}

.menu-list>li>a:hover {
    opacity: 0.8;
}

.menu-list>li>a .material-symbols-outlined {
    margin-left: 8px;
    font-size: 24px;
    color: var(--light);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.menu-list>li>a.expanded .material-symbols-outlined {
    transform: rotate(180deg);
    text-decoration: none;
}

.submenu {
    list-style: none;
    margin-top: 0;
    margin-left: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu.expanded {
    max-height: 800px;
}

.submenu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.submenu.expanded li {
    opacity: 1;
    transform: translateY(0);
}

.submenu.expanded li:nth-child(1) {
    transition-delay: 0.05s;
}

.submenu.expanded li:nth-child(2) {
    transition-delay: 0.1s;
}

.submenu.expanded li:nth-child(3) {
    transition-delay: 0.15s;
}

.submenu.expanded li:nth-child(4) {
    transition-delay: 0.2s;
}

.submenu.expanded li:nth-child(5) {
    transition-delay: 0.25s;
}

.submenu.expanded li:nth-child(6) {
    transition-delay: 0.3s;
}

.submenu.expanded li:nth-child(7) {
    transition-delay: 0.35s;
}

.submenu.expanded li:nth-child(8) {
    transition-delay: 0.4s;
}

.submenu a {
    font-family: 'TikTok Sans', Arial, sans-serif;
    color: var(--light);
    text-decoration: none;
    font-size: var(--pd);
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 6px 12px;
    text-transform: uppercase;
    position: relative;
}

.submenu a:hover {
    opacity: 0.8;
}


.site-logo {
    position: fixed;
    top: 15px;
    left: 17px;
    z-index: 1000;
    display: block;
}

.site-logo img {
    height: 50px;
    width: auto;
}


.hero-section {
    background: var(--dark2);
    height: 100vh;
    min-height: 480px;
    padding: 0;
    background: var(--light);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(70%);
}

.hero-content {
    position: absolute;
    text-align: center;
    color: var(--light);
    max-width: 900px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-date-location {
    font-size: var(--h5d);
    font-weight: 400;
    padding-bottom: 30px;
}

.hero-subtitle {
    font-size: var(--h4d);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-size: var(--h1d);
    letter-spacing: 0;
    font-weight: 700;
    margin: 0;
    font-family: 'TikTok Sans', Arial, sans-serif;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.button {
    background: var(--accent);
    color: var(--dark2);
    border: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.button:hover {
    transform: translateY(-2px);
    color: var(--accent);
    background: var(--dark2);

}

.language-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.toggle-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.toggle-button:active {
    transform: scale(0.95);
}

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


/* Bulletin Section Styles */
.bulletin-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--light);
    color: var(--dark);
    text-align: left;
    gap: 0px;
}

.bulletin-section>* {
    margin-bottom: 20px;
}

.bulletin-section>*:last-child {
    margin-bottom: 0;
}

/* Typography */
.bulletin-section h1 {
    font-size: var(--h1d);
    font-weight: 600;
    margin-bottom: 25px;
}

.bulletin-section h2 {
    font-size: var(--h2d);
    font-weight: 500;
    margin-bottom: 20px;
}

.bulletin-section h3 {
    font-weight: 500;
    font-size: var(--h3d);
    margin-bottom: 20px;
}

.bulletin-section h4 {
    font-weight: 500;
    font-size: var(--h4d);
    margin-bottom: 15px;
}

.bulletin-section h5 {
    font-size: var(--h5d);
    font-weight: 500;
    margin-bottom: 15px;
}

.bulletin-section p {
    font-size: var(--pd);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bulletin-section p:last-child {
    margin-bottom: 0;
}

/* Links */
.bulletin-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--accent);
}

.bulletin-link:hover {
    color: var(--dark2);
    border-bottom-color: var(--dark2);
}

.footer-a {
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--light);
}
.footer-a:hover {
    opacity: 0.9;
}

/* Images */
.bulletin-image {
    width: 100%;
    height: auto;
    border-radius: 17px;
    margin-bottom: 20px;
}

/* Tables */
.bulletin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: var(--pd);
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.bulletin-table th {
    background: var(--dark);
    color: var(--light);
    padding: 13px;
    text-align: left;
    font-weight: 500;
    font-size: var(--pd);
}

.bulletin-table td {
    padding: 13px;
    border-bottom: 1px solid rgba(42, 41, 40, 0.08);
}

.bulletin-table tr:last-child td {
    border-bottom: none;
}
/* Info Box */
.info-box {
    background: var(--dark2);
    color: var(--light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 17px;
}

.info-box h4,
.info-box h5 {
    color: var(--light);
}

.info-box p{
    font-size: var(--h5p);
}

.info-box a {
    color: var(--light);
    border-bottom-color: var(--light);
}

.info-box a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Lists */
.bulletin-section ul,
.bulletin-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
    list-style: none;
}

.bulletin-section li {
    font-size: var(--pd);
    line-height: 1.6;
    margin-bottom: 10px;
}

.content {
    text-align: center;
    padding: 0px 17px 50px 17px;
    width: 100%;
    background: var(--light);
    color: var(--dark);
}

.newsletter {
    max-width: 600px;
    margin: 17px auto;
    background-color: var(--light);
}

input {
    margin-top: 20px;
    width: 100%;
    padding: 17px;
    margin-bottom: 10px;
    font-size: var(--pd);
    border-radius: 50px;
    border: none;
}

.newsletter button {
    width: 100%;
    padding: 17px;
    background: var(--dark);
    color: var(--light);
    border: none;
    cursor: pointer;
    font-size: var(--pd);
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease;
}


.newsletter button:hover {
    text-decoration: underline;
}

#footer {
    background: var(--dark2);
    color: var(--light);
}

.hero-section h1 {
    padding: 25px 0;
}

h1 {
    font-size: var(--h1d);
    font-weight: 600;
}

h2 {
    font-size: var(--h2d);
    font-weight: 500;
}

h3 {
    font-weight: 500;
    font-size: var(--h3d);
}

h4 {
    font-weight: 500;
    font-size: var(--h4d);

}

h5 {
    font-size: var(--h5d);
    font-weight: 400;
    margin-top: 20px;
}

@media (max-width: 800px) {

    .menu-btn {
        top: 15px;
        right: 17px;
    }

    .menu-overlay {
        width: 100%;
        height: 100%;
        background: var(--dark2);
        border-radius: 0;
        padding: 100px 40px;
        top: 0;
        right: 0;
        left: 0;
        transform: translateY(-100%);
        transition: visibility 0s linear 0.6s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: none;
        opacity: 1;
    }

    .menu-overlay.active {
        visibility: visible;
        transform: translateY(0);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .menu-btn:hover+.menu-overlay {
        opacity: 0;
        visibility: hidden;
    }

    .menu-btn:hover+.menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    @keyframes sharpAscend {
        0% {
            opacity: 0;
            transform: translateY(100%);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }

        1% {
            opacity: 1;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }

    .menu-list>li {
        opacity: 0;
        transform: translateY(100%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        will-change: transform, clip-path, opacity;
    }

    .menu-overlay.active .menu-list>li {
        animation: sharpAscend 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .menu-overlay.active .menu-list>li:nth-child(1) {
        animation-delay: 0.5s;
    }

    .menu-overlay.active .menu-list>li:nth-child(2) {
        animation-delay: 0.6s;
    }

    .menu-overlay.active .menu-list>li:nth-child(3) {
        animation-delay: 0.7s;
    }

    .menu-overlay.active .menu-list>li:nth-child(4) {
        animation-delay: 0.8s;
    }

    .menu-overlay.active .menu-list>li:nth-child(5) {
        animation-delay: 0.9s;
    }

    .menu-overlay.active .menu-list>li:nth-child(6) {
        animation-delay: 1.0s;
    }

    .menu-overlay.active .menu-list>li:nth-child(7) {
        animation-delay: 1.1s;
    }

    .menu-overlay.active .menu-list>li:nth-child(8) {
        animation-delay: 1.2s;
    }

    .menu-list>li>a {
        color: white;
        font-size: 32px;
        padding: 10px 0;
    }

    .menu-list>li>a:hover {
        color: white;
        background: transparent;
        border-radius: 0;
    }

    .menu-list>li>a .material-symbols-outlined {
        color: white;
    }

    .submenu {
        margin-left: 20px;
    }

    .submenu a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 24px;
        padding: 8px 0;
    }

    .submenu a:hover {
        color: white;
        background: transparent;
        border-radius: 0;
    }



    .hero-content {
        gap: 15px;
    }

    .hero-subtitle {
        font-size: var(--h4m);
    }

    .hero-title {
        font-size: var(--h1m);
    }

    .hero-date-location {
        font-size: var(--h5m);
    }

    .language-toggle {
        bottom: 15px;
        right: 17px;
    }

    .toggle-button {
        width: 30px;
        height: 30px;
    }

    .content {
        padding: 40px 17px;
    }

    .bulletin-section {
        padding: 100px 17px;
    }

    .bulletin-section h1 {
        font-size: var(--h1m);
    }

    .bulletin-section h2 {
        font-size: var(--h2m);
    }

    .bulletin-section h3 {
        font-size: var(--h3m);
    }

    .bulletin-section h4 {
        font-size: var(--h4m);
    }

    .bulletin-section h5 {
        font-size: var(--h5m);
    }

    .bulletin-section p,
    .bulletin-section li {
        font-size: var(--pm);
    }

    .bulletin-image {
        margin-bottom: 13px;
    }

    .bulletin-table {
        font-size: var(--pm);
    }

    .bulletin-table th,
    .bulletin-table td {
        padding: 5px;
        font-size: var(--pm);
    }

    .info-box,
    .highlight-box {
        padding: 20px;
    }

    .info-box p{
        font-size: var(--h5m);
    }

    h1 {
        font-size: var(--h1m);
    }

    h2 {
        font-size: var(--h2m);
    }

    h3 {
        font-size: var(--h3m);
    }

    h4 {
        font-size: var(--h4m);
    }

    h5 {
        font-size: var(--h5m);
    }
}