/* === Font Face Embedding === */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* === Base Styles === */
body {
    margin: 0;
    background-color: #000;
    color: #d1ff00;
    font-family: 'Source Serif Pro', serif;
}

/* === Header === */
header {
    background-color: #000;
    padding: 30px 20px 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.menu {
    font-size: 26px;
    color: #d1ff00;
    position: absolute;
    top: 20px;
    left: 25px;
    cursor: pointer;
    z-index: 1001;
    font-family: 'Nunito Sans', sans-serif;
    transition: transform 0.2s ease;
}

.menu:hover {
    transform: scale(1.1);
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 950px;
    width: 100%;
    height: auto;
}

/* === Slide-Out Navigation === */
.side-nav {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100%;
    background-color: #000;
    z-index: 1000;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: left 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.side-nav.open {
    left: 0;
    opacity: 1;
    padding-top: 200px;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav ul li {
    background-color: #d1ff00;
    color: #000;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 16px 20px;
    border-left: 6px solid #000;
    line-height: 1.4;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s forwards;
    transition: background-color 0.3s;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.side-nav ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.side-nav ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.side-nav ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.side-nav ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.side-nav ul li:nth-child(5) {
    animation-delay: 0.5s;
}

.side-nav ul li:hover {
    background-color: #eaff5f;
}

.side-nav ul li a {
    color: #000;
    text-decoration: none;
    display: block;
}

/* Fade-in from below */
@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === Nav Overlay === */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* === Fixed Home Button in Nav === */
.nav-home {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #d1ff00;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: bold;
    z-index: 1100;
    animation: fadeInDown 0.4s ease forwards;
    transition: background-color 0.3s ease;
}

.nav-home a {
    color: #000;
    text-decoration: none;
}

.nav-home:hover {
    background-color: #eaff5f;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === Main Section === */
main {
    background-color: #fefde1;
    color: #000;
    padding: 80px 20px;
}

/* === Footer === */
footer {
    display: flex;
    justify-content: center;
    background: #000;
    padding: 40px 40px;
    gap: 380px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    text-align: left;
    color: #d1ff00;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
}

footer h3,
footer p,
footer a {
    color: #d1ff00 !important;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* === Logo Smooth Drop Animation === */
@keyframes dropSmooth {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* === Typographic Layout Sections === */
.content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 80px 100px;
    background-color: #fefde1;
}

/* Removed reverse styling — no flipping needed anymore */
.content-section.reverse {
    /* intentionally left blank */
}

.text-block {
    flex: 1;
    font-family: 'Source Serif Pro', serif;
    color: #3C3930;
}

.text-block h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3C3930;
    line-height: 1.4;
}

.text-block p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 18px;
}

/* === Image + Accent Bar === */
.image-wrap {
    flex: 1;
    display: flex;
    height: 400px;
    border: 2px solid #000;
}

.image-placeholder {
    flex: 5;
    background: #c4c4c4;
    border: 2px solid #000;
}

.accent-bar {
    flex: 1;
    min-width: 40px;
    background-color: #e6ff00;
    border: 2px solid #000;
}

.left-accent {
    flex-direction: row;
}

.right-accent {
    flex-direction: row;
}

/* Removed reverse flip for left-accent */
.reverse .left-accent {
    /* intentionally left blank */
}
