﻿body {
    font-family: 'Bai Jamjuree', 'Segoe UI';
    font-weight: 400;
    background-color: #0d0d0d;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    padding-top: 60px; /* equal to navbar height */
    padding-bottom: 40px;
}

.logo {
    font-size: 1.6em;
    color: #00ff00;
    text-decoration: none;
    margin-right: 30px; /* space between logo and nav */
}

    .logo:hover {
        color: #cccccc;
    }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #1a1a1a;
    box-sizing: border-box;
    padding: 5px 20px;
    display: flex;
    justify-content: flex-start; /* align all items left */
    align-items: center;
    gap: 20px; /* spacing between nav items */

    border-bottom: 1px solid #333;
}

    .navbar h2 {
        margin: 0;
        font-size: 1.5em;
        color: #ffffff;
    }

    .navbar nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .navbar nav a {
            color: #cccccc;
            text-decoration: none;
            font-size: 1em;
        }

            .navbar nav a:hover {
                color: #ffffff;
            }

    .navbar .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .navbar .nav-right a {
            color: #cccccc;
            text-decoration: none;
            font-size: 1em;
        }

            .navbar .nav-right a:hover {
                color: #ffffff;
            }

            .navbar .nav-right a i {
                margin-left: 6px;
                font-size: 0.9em;
            }

/* -------- Dropdown styling -------- */
.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown a {
        color: #cccccc;
        text-decoration: none;
        font-size: 1em;
    }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 170px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    z-index: 999;
}

    .dropdown-content a {
        display: block;
        padding: 10px 16px;
        white-space: nowrap;
        font-size: 0.95em;
        color: #cccccc;
    }

        .dropdown-content a:hover {
            background-color: #333;
            color: #ffffff;
        }

/* Make sure dropdown stays open while hovering anywhere inside block */
.dropdown:hover .dropdown-content {
    display: block;
}

footer {
    background-color: #1a1a1a;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #333;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    white-space: nowrap;
}

    footer#footer-taelynshome {
        background-color: transparent;
        color: #666;
        font-size: 0.9em;
        text-align: center;
        border-top: 0;
        padding: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        white-space: nowrap;
    }

.footer-container {
    color: #666;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 0 40px;
}

.footer-links {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
}

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin-left: 10px;
    }

        .footer-links a:hover {
            color: #fff;
        }
