body {
    margin: 0;
    background: #0b0b0b;
    color: #d4af37;
    font-family: Georgia, serif;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #d4af37;
}

/* ICON */
.logo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;

    display: block;

    position: relative;
    top: -1px; /* tiny fix for perfect alignment */

    animation: spin 12s linear infinite, glow 2.5s ease-in-out infinite;

    filter: drop-shadow(0 0 6px #8C6E2A);
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    min-height: 100vh;
}

.hero-text h1 {
    font-size: 5rem;
    letter-spacing: 4px;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 500px;
}

/* BUTTON */
button {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ANIMATIONS */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 2px #8C6E2A);
        opacity: 0.85;
    }
    50% {
        filter: drop-shadow(0 0 10px #8C6E2A);
        opacity: 1;
    }
    100% {
        filter: drop-shadow(0 0 2px #8C6E2A);
        opacity: 0.85;
    }
}