:root {
    /* Colors */
    --bg-dark: #0f1215;
    --bg-secondary: #161b22;
    --wood-accent: #2c221b;
    --ice-primary: #a2d2ff;
    --ice-secondary: #bde0fe;
    --ice-glow: rgba(162, 210, 255, 0.4);
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;

    /* Glassmorphism */
    --glass-surface: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(162, 210, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.03);

    /* Shapes */
    --radius-btn: 50px;
    --radius-panel: 30px;
    --radius-nav: 0 0 40px 40px;
}

/* --- Global Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    color: var(--ice-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.5rem;
}

.section-title-container {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 0 20px var(--ice-glow);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.rune-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-size: 1.2rem;
}

.rune-divider::before,
.rune-divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--ice-primary), transparent);
}

.rune-char {
    font-family: 'serif';
    font-weight: 800;
    color: var(--ice-secondary);
}

/* --- Rune Background System --- */
.rune-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1a2332 0%, var(--bg-dark) 100%);
}

.rune {
    position: absolute;
    color: rgba(162, 210, 255, 0.05);
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20vh) rotate(20deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px var(--ice-glow));
        opacity: 0.1;
    }

    50% {
        filter: drop-shadow(0 0 15px var(--ice-glow));
        opacity: 0.3;
    }
}

/* --- Glassmorphism --- */
.glass-panel {
    background: var(--glass-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-panel);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, var(--glass-highlight), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    pointer-events: none;
}

.glass-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(162, 210, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--ice-glow);
}

.glass-panel:hover::before {
    transform: translateX(100%);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 5%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 18, 21, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    border-radius: var(--radius-nav);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
    /* Above mobile menu */
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ice-primary);
    letter-spacing: 0.15em;
}

.nav-items {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--ice-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ice-primary);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--ice-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    /* Bigger hit area */
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--ice-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-items {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        /* Off-screen */
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(15, 18, 21, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-items.active {
        right: 0;
        /* On-screen */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
}

/* --- Viking SVG --- */
.viking-logo-svg {
    height: 50px;
    width: 50px;
    fill: none;
    stroke: var(--ice-primary);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px var(--ice-glow));
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-rune-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(162, 210, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: spin 80s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='circlePath' d='M 10, 50 a 40,40 0 1,1 80,0 a 40,40 0 1,1 -80,0' fill='none' /%3E%3Ctext fill='rgba(162, 210, 255, 0.15)' font-family='serif' font-size='8' letter-spacing='5'%3E%3CtextPath href='%23circlePath'%3EF U TH A R K G W H N I J EO P Z S T B E M L NG O D%3C/textPath%3E%3C/text%3E%3C/svg%3E");
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff, var(--ice-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(162, 210, 255, 0.3));
    animation: fadeInDown 1.2s ease-out;
    line-height: 1.1;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: var(--radius-btn);
    /* Very Roundy */
    border: 1px solid var(--ice-primary);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    background: rgba(162, 210, 255, 0.05);
    color: var(--ice-primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.btn:hover {
    background: var(--ice-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 40px var(--ice-glow);
    transform: scale(1.05);
}

.hero-subpage {
    min-height: 60vh;
}

.hero-subpage h1 {
    font-size: 4rem;
}

/* --- Layout --- */
.section-padding {
    padding: 10rem 5%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 4rem 3rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-runes {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

.service-icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
    border: 2px solid var(--ice-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--ice-glow), inset 0 0 20px var(--ice-glow);
    background: rgba(0, 0, 0, 0.2);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

/* --- Content Styling --- */
.content-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: justify;
}

.highlight {
    color: var(--ice-primary);
    font-weight: 600;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    color: var(--text-main);
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
    padding: 1rem 0;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--ice-primary);
    font-family: 'Cinzel', serif;
}

@media (max-width: 968px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-rune-circle {
        width: 350px;
        height: 350px;
    }

    .navbar {
        height: 70px;
    }

    .section-padding {
        padding: 6rem 5%;
    }

    .content-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-subpage {
        min-height: 40vh;
        padding-top: 120px;
        justify-content: flex-start;
    }

    .hero-subpage h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-top: 2rem;
    }

    .hero p {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .glass-panel {
        padding: 2rem !important;
    }

    .hours-table {
        font-size: 0.95rem !important;
    }

    .grid-2>div:has(.glass-panel) {
        order: -1;
        /* Puts visual representation/icons above text on mobile */
    }

    /* Fixing the map height on mobile */
    .grid-2 .glass-panel iframe {
        min-height: 350px;
    }

    .grid-2>.glass-panel[style*="min-height: 500px"] {
        min-height: 350px !important;
    }

    .footer-runes {
        font-size: 1.2rem;
        letter-spacing: 0.3rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 4rem 1rem;
    }

    .glass-panel {
        padding: 1.5rem !important;
    }

    /* Improve table look on very small screens */
    .hours-table td {
        display: block;
        padding: 0.5rem 0;
        text-align: center !important;
    }

    .hours-table td:first-child {
        font-weight: bold;
        color: var(--ice-primary);
        padding-bottom: 0;
        border-bottom: none;
    }

    .hours-table tr {
        margin-bottom: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rune-divider {
        font-size: 1rem;
    }

    .rune-divider::before,
    .rune-divider::after {
        width: 40px;
    }

    .hero-subpage h1 {
        font-size: 2rem !important;
        /* Force smaller size on very small phones */
    }

    .footer-runes {
        font-size: 0.6rem;
        letter-spacing: 0.1rem;
        word-break: break-all;
        overflow-wrap: anywhere;
        padding: 0 0.5rem;
    }
}

/* Booking Widget Styles (Added) */
.booking-widget-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: -1;
    transform: translateY(-50%);
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-muted);
    transition: all 0.3s;
}

.step.active {
    border-color: var(--ice-primary);
    color: var(--ice-primary);
    box-shadow: 0 0 15px var(--ice-glow);
}

.step.completed {
    background: var(--ice-primary);
    border-color: var(--ice-primary);
    color: var(--bg-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.slot-btn {
    padding: 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s;
}

.slot-btn:hover {
    background: rgba(162, 210, 255, 0.1);
    border-color: var(--ice-primary);
}

.slot-btn.selected {
    background: var(--ice-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--ice-glow);
    border-color: var(--ice-primary);
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ice-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--ice-primary);
    box-shadow: 0 0 10px rgba(162, 210, 255, 0.2);
}

@media (max-width: 968px) {}