:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ff0055;
    /* Vibrant pink/red for accents */
    --secondary-bg: #111111;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.4s;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-transform: uppercase;
    /* Force uppercase globally */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
div {
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    /* Reduced padding */
    min-height: auto;
    /* Remove forced min-height to reduce gaps */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive & Utilities */
.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        /* Keep vertical padding from .section if present */
    }

    .section-title {
        font-size: 2rem !important;
        /* Override if needed, but best used with class */
        margin-bottom: 30px;
    }

    .glass-panel {
        padding: 20px !important;
    }

    /* Navigation */
    nav.glass-panel {
        width: 95%;
        padding: 12px 20px !important;
        gap: 15px !important;
        justify-content: space-around;
        top: 15px !important;
    }

    /* Contact Buttons */
    #contact .action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px !important;
    }

    /* Hero Logo */
    #home img {
        width: 85% !important;
        max-width: 300px !important;
    }
}