/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    background-image: url('img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

/* Strong tags styling */
strong {
    color: #0066cc;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(173, 216, 230);
    /* Light blue */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 24px;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background: #333;
    color: #fff;
}

/* Main content styling */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

/* Hero section styling */
.hero {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    color: #fff;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 1s forwards;
}

.free-access {
    font-size: 1.5em;
    color: #28a745;
    /* Green color for attention */
    margin-top: 10px;
    text-align: center;
    animation: fadeIn 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown styling */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2em;
    font-weight: bold;
}

.countdown-item p {
    margin: 0;
    font-size: 1em;
    color: #6c757d;
}

/* Menu presentation styling */
.menu-presentation {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 1s;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    background: rgba(255, 255, 255);
    padding: 15px 25px;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
    transform: scale(0.95);
    text-align: center;
    min-width: 150px;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.2s;
}

.menu-item:hover {
    background: #333;
    transform: scale(1);
}

.menu-item:hover a {
    color: #fff;
}

/* Description section styling */
.description-section {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
}

.frame-90s {
    border: 2px dashed #333;
    background: rgba(255, 255, 255);
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
}

.frame-90s p {
    margin-bottom: 15px;
}

/* Footer styling */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 40px;
    text-align: center;
}

footer p {
    font-size: 12px;
}

footer hr {
    width: 50%;
    margin: 10px auto;
    border: 0;
    height: 1px;
    background: #ccc;
}


/* Keyframes for animations */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .menu-item {
        padding: 12px 22px;
        font-size: 16px;
        min-width: 120px;
    }

    .free-access {
        font-size: 1.3em;
    }

    footer ul {
        gap: 10px;
    }
}

/* Hamburger button styling */
.hamburger {
    display: none;
    /* Initially hidden */
    font-size: 24px;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

/* Navigation mobile styling */
@media (max-width: 767px) {
    .hamburger {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 60px;
        /* Adjust based on header height */
        left: 0;
        background: rgba(173, 216, 230);
        /* Same as header background */
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 10px;
    }

    nav ul li a:hover {
        background: #333;
        color: #fff;
    }
}

/* Responsive design for mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .menu-presentation {
        flex-direction: column;
        gap: 15px;
    }

    .menu-item {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
        min-width: unset;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        padding: 6px 10px;
        font-size: 14px;
    }

    footer ul {
        flex-direction: column;
        gap: 10px;
    }

    footer ul li a {
        font-size: 12px;
    }

    .free-access {
        font-size: 1.1em;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 8px 16px;
        min-width: 60px;
    }

    .countdown-item span {
        font-size: 1.5em;
    }
}