/* ============================================
   HAGEKINO PREMIUM STYLE
   Norwegian VM Event Rental - Premium Design
   ============================================ */

/* COLORS */
:root {
    --navy: #071B3A;
    --deep-blue: #123C69;
    --norwegian-red: #BA0C2F;
    --warm-white: #FFF8EF;
    --light-sky: #EAF4FF;
    --grass-green: #2E7D32;
    --gold: #D6A84F;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
}

/* RESET & GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--norwegian-red);
    color: white;
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--norwegian-red);
    color: white;
}

.btn-primary:hover {
    background: #8B0A1F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(186, 12, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--norwegian-red);
    color: var(--norwegian-red);
}

.btn-secondary:hover {
    background: var(--norwegian-red);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sticky {
    width: 100%;
}

.btn-submit {
    width: 100%;
}

/* STICKY MOBILE CTA */
.sticky-booking {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 100;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* LOGO IMAGE */
.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8892e 100%);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(214, 168, 79, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e8bb5a 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214, 168, 79, 0.5);
    color: var(--navy);
}

/* CHAMPIONS STRIP */
.champions-strip {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.champions-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

.champions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 27, 58, 0.88) 0%, rgba(186, 12, 47, 0.6) 100%);
    z-index: 2;
}

.champions-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.champions-eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.champions-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}

.champions-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .champions-title {
        font-size: 36px;
    }
    .champions-strip {
        min-height: 320px;
    }
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .champions-title {
        font-size: 28px;
    }
}

/* HEADER */
.header {
    background: var(--navy);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo-tagline {
    font-size: 12px;
    opacity: 0.8;
    margin: 2px 0 0;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 27, 58, 0.72) 0%, rgba(18, 60, 105, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-sky);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.badge.premium {
    background: rgba(214, 168, 79, 0.3);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-trust {
    color: var(--light-sky);
    font-size: 16px;
}

/* COUNTDOWN */
.countdown-section {
    background: var(--deep-blue);
    color: white;
    padding: 40px 0;
}

.countdown {
    text-align: center;
}

.countdown h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

/* SECTION STYLING */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

/* MATCHES / KAMPKALENDER */
.matches-section {
    background: white;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--norwegian-red);
    color: white;
    border-color: var(--norwegian-red);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.match-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    border-color: var(--norwegian-red);
    box-shadow: 0 8px 20px rgba(186, 12, 47, 0.15);
    transform: translateY(-4px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.match-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.match-status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-ledig {
    background: #e8f5e9;
    color: var(--grass-green);
}

.status-populær {
    background: #e3f2fd;
    color: var(--deep-blue);
}

.status-premium {
    background: #fff3e0;
    color: #f57c00;
}

.status-kun-1 {
    background: linear-gradient(135deg, #ffebee 0%, #fff3e0 100%);
    color: var(--norwegian-red);
    border: 1px solid var(--gold);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.status-norge {
    background: #fce4ec;
    color: var(--norwegian-red);
    border: 1px solid rgba(186, 12, 47, 0.3);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px 0;
    gap: 12px;
}

.team-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team-flag {
    font-size: 48px;
}

.team-flag-img {
    width: 64px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    display: block;
}

.team-flag-emoji {
    font-size: 48px;
    line-height: 1;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.vs-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.match-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.match-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--norwegian-red);
    margin: 16px 0;
}

.book-btn {
    margin-top: auto;
}

/* EQUIPMENT */
.equipment-section {
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.equipment-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.equipment-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy);
}

.equipment-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* PRICING */
.pricing-section {
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-category {
    font-size: 16px;
    font-weight: 700;
    color: var(--norwegian-red);
    margin-bottom: 16px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.premium {
    background: #fff8e1;
    padding: 12px;
    border-radius: 6px;
    border-bottom: none;
}

.price-item.exclusive {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    padding: 16px;
    border-radius: 8px;
    border-bottom: none;
    position: relative;
}

.price-match {
    font-weight: 500;
}

.price-amount {
    font-weight: 700;
    color: var(--norwegian-red);
}

.price-badge {
    display: inline-block;
    background: var(--norwegian-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.price-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

.pricing-note {
    background: #e3f2fd;
    border-left: 4px solid var(--deep-blue);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

/* HOW IT WORKS */
.how-it-works-section {
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--norwegian-red);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy);
}

.step p {
    color: var(--text-light);
}

/* PRACTICAL INFO */
.practical-section {
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.info-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--navy);
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* FAQ */
.faq-section {
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* BOOKING FORM */
.booking-section {
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--norwegian-red);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
}

/* FOOTER */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--gold);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section a {
    color: var(--gold);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sticky-booking {
        display: block;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .countdown-timer {
        gap: 12px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .badges {
        gap: 8px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 8px 14px;
    }

    .match-card {
        padding: 16px;
    }

    .team-flag {
        font-size: 36px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 10px;
    }
}
