/* Detta laddas omedelbart */
.navbar {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: fixed;
    top: 0;
    width: 100%;
    background: #05070a; /* Svart bakgrund direkt */
    z-index: 9999;
}
:root {
    --deep-blue: #0a111e;
    --midnight: #05070a;
    --gold: #c5a059;
    --soft-blue: #1e2a3a;
    --text: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--midnight); 
    color: var(--text); 
    font-family: 'Inter', sans-serif;
}

/* Navbar - Visas direkt */
.navbar.immediate {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 6%; position: fixed; width: 100%; z-index: 1000;
    background: linear-gradient(to bottom, rgba(49, 103, 183, 0.256), transparent);
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 3px; }
.dot { color: var(--gold); }
.nav-menu { display: flex; gap: 30px; }
.nav-item { text-decoration: none; color: white; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; }
.nav-item.active { color: var(--gold); opacity: 1; }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 11, 30, 0.7); }
#hero-video { position: absolute; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-content { z-index: 1; text-align: center; }
h1 { font-family: 'Playfair Display', serif; font-size: 5vw; margin-bottom: 10px; }

/* Values Section */
.values-section { padding: 100px 10%; background: var(--deep-blue); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.value-card { 
    padding: 40px; background: rgba(255,255,255,0.03); 
    border-radius: 20px; transition: 0.4s; 
    border: 1px solid rgba(255,255,255,0.05);
}
.value-card:hover { transform: translateY(-10px); background: var(--soft-blue); }
.value-icon { color: var(--gold); font-size: 2rem; margin-bottom: 20px; }

/* Pricing */
.pricing-section { padding: 100px 10%; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.price-card { 
    background: var(--deep-blue); padding: 40px 30px; 
    border-radius: 30px; text-align: center; 
    border: 1px solid rgba(255,255,255,0.05); position: relative;
}
.price-card.featured { border: 1px solid var(--gold); transform: scale(1.05); background: var(--soft-blue); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: black; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: bold; }
.price { font-size: 2.5rem; font-weight: bold; margin: 20px 0; color: var(--gold); }
.price span { font-size: 1rem; opacity: 0.6; }
ul { list-style: none; margin-bottom: 30px; text-align: left; }
ul li { margin-bottom: 12px; font-size: 0.9rem; opacity: 0.8; }
.btn-select { 
    display: inline-block; padding: 12px 30px; border: 1px solid var(--gold); 
    color: var(--gold); text-decoration: none; border-radius: 50px; transition: 0.3s;
}
.btn-select:hover { background: var(--gold); color: black; }

/* Rundare Kontaktformulär */
.form-container { 
    background: var(--deep-blue); padding: 50px; border-radius: 40px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
}
input, textarea { 
    border-radius: 15px !important; background: rgba(0,0,0,0.2) !important; 
    border: 1px solid rgba(255,255,255,0.1) !important; padding: 15px 20px !important;
    margin-bottom: 20px; color: white; width: 100%;
}
.submit-btn { 
    width: 100%; padding: 18px; border-radius: 50px; 
    background: var(--gold); border: none; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { transform: scale(1.02); background: #b08d48; }

.premium-footer {
    padding: 70px 20px;
    background: linear-gradient(to top, #0f172a, #111827);
    text-align: center;
    position: relative;
}

.premium-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    font-size: 20px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(139,92,246,0.4);
}

.footer-copy {
    font-size: 0.8rem;
    color: #64748b;
    letter-spacing: 1px;
}
/* --- MOBILANPASSNING & HAMBURGARE --- */

/* Hamburgarikonen */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Den dolda mobilmenyn */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
}

.mobile-menu.active { right: 0; }

@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }

    /* Animation till ett X */
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Layout-ändringar för mobilen */
    .contact-grid, .price-grid, .value-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .title-reveal, .reveal-text {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .contact-container {
        padding: 120px 5% 50px;
    }

    .hero-content {
        padding: 0 20px;
    }
}
.section-subtitle {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    opacity: 0.7;
    font-size: 0.9rem;
    color: #D4AF37; /* Guld färg för att matcha loggan */
}
.price-card {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Skapar ett jämnt mellanrum mellan alla element i kortet */
}
.center {
    text-align: center;
    width: 100%;       /* Säkerställer att den tar upp hela bredden */
    display: block;    /* Gör att den beter sig som ett blockelement */
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 40px; /* Skapar ett snyggt gap ner till prisplanerna */
    font-family: 'Playfair Display', serif; /* För en lyxig känsla */
}