@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --navy: #1F3C56;
    --navy-dark: #071C2E;
    --gold: #EBC765;
    --gold-light: #FFF1CC;
}

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

body {
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    line-height: 1.6;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 16px;
    padding-top: 70px;
    background-image: url('../assets/images/background.webp');
    background-size: 25% auto;
    background-blend-mode: soft-light;
}

header {
    position: fixed;
    width: 100%;
    background-color: var(--navy-dark);
    color: var(--gold);
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(245, 213, 165, 0.4);
    border-bottom: 3px solid var(--gold);
}

header nav {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    font-size: 22pt;
}
header h1 a {
    text-decoration: none;
    color: var(--gold);
}

.burger {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 25px;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 100%;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    list-style: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 1rem 0;
    border-bottom: 3px solid var(--gold);
}

.nav-menu.active { transform: translateX(0); }

.nav-menu li a {
    font-size: 16pt;
    color: var(--gold-light);
    display: block;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-menu li a  strong{
    text-decoration: underline;
}

.nav-menu li a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.container {
    margin-top: 2rem;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.container h3 {
    font-size: 17pt;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container p {
    font-size: 14pt;
    }

h2 {
    font-weight: 700;
    font-size: 29pt;
    color: var(--gold);
}

.separator {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    margin: 0.8rem auto 0.8rem auto;
    border-radius: 2px;
}

@media (min-width: 768px) {
    
    .container {
        max-width: 1000px; 
    }
    .container p {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .burger { display: none; }
    .nav-menu {
        position: static;
        transform: none;
        display: flex;
        gap: 1rem;
        background: none;
        padding: 0;
        border: none;
    }
    .nav-menu li a {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-radius: 8px;
    }
    body {
        padding-top: 80px;
        background-size: 8% auto;
    }
    header h1 {
        line-height: 1;
        margin: 0;
        flex-shrink: 0;
        margin-right: 30pt;
    }
    .nav-menu li a {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        border-bottom: none;
        font-size: 14pt;
    }
}