:root {
    --bg: #050505;
    --card-bg: #121212;
    --gold: #ffb400;
    --gold-glow: rgba(255, 180, 0, 0.4);
    --liquid-amber: linear-gradient(180deg, #ffde7d 0%, #ffb400 100%);
    --text: #eeeeee;
    --muted: #666;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Baggrunds-glød */
.glow-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 10%, #1a1400 0%, #050505 70%);
    z-index: -1;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.container { max-width: 1000px; width: 100%; }

/* HERO */
.hero-header {
    text-align: center;
}

.hero-title {
    font-size: clamp(80px, 20vw, 240px);
    font-weight: 900;
    letter-spacing: -10px;
    line-height: 0.8;
    background: linear-gradient(to bottom, #fff 20%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--gold-glow));
    margin-bottom: 20px;
}

.aau-badge {
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 60px;
    display: block;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    border: 1px solid #222;
    padding: 40px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.card p {
    color: #aaa;
    font-size: 1.1rem;
}

/* CONTACT */
.contact-box {
    border: 4px solid var(--gold);
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.contact-box h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.contact-email:hover {
    border-bottom-color: var(--gold);
}

/* NAVIGATION PIL */
.scroll-down {
    position: absolute;
    bottom: 40px;
    cursor: pointer;
    animation: float 2s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

.gold-glow-text {
    text-shadow: 0 0 15px var(--gold-glow);
}
