/* ================================
   Havna Hotel & Sjøbad — Styles
   Colors from brand guide
   ================================ */

:root {
    --emerald: #174144;
    --emerald-light: #1d5558;
    --emerald-dark: #0f2d2f;
    --peach: #D8A287;
    --peach-light: #e4bba5;
    --pistachio: #BDC2A2;
    --lips: #d7a286;
    --lips-light: #e0b69e;
    --earth: #C2B2A1;
    --sea-breeze: #B8D4CF;
    --white: #FFFFFF;
    --cream: #F5F0EB;
    --text-dark: #1a1a1a;

    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Taviraj', serif;

    --header-height: 80px;
}

/* ================================
   Reset & Base
   ================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--emerald);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--peach);
    display: block;
    margin-bottom: 1rem;
}

.label.light {
    color: var(--peach-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
}

/* ================================
   Image Placeholders
   ================================ */

.image-placeholder {
    background: linear-gradient(135deg, var(--sea-breeze) 0%, var(--pistachio) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.image-placeholder.dark {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
}

.image-placeholder.tall {
    min-height: 500px;
}

.placeholder-inner {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem;
}

.image-placeholder:not(.dark) .placeholder-inner {
    color: rgba(23,65,68,0.4);
}

/* ================================
   Buttons
   ================================ */

.btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--lips);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--lips-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--lips);
    border: 1.5px solid var(--lips);
}

.btn-outline:hover {
    background: var(--lips);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--emerald);
}

.btn-light:hover {
    background: var(--lips);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--emerald);
}

.btn-book {
    background: var(--lips);
    color: var(--white);
    padding: 0.5rem 1.4rem;
    font-size: 0.65rem;
}

.btn-book:hover {
    background: var(--lips-light);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
}

/* ================================
   Booking Bar
   ================================ */

.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 2rem;
}

.booking-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
    padding: 1.5rem;
}

#widgetContainer {
    width: 100%;
}

.booking-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.booking-field:hover {
    background: var(--cream);
}

.booking-icon {
    width: 20px;
    height: 20px;
    color: var(--peach);
    flex-shrink: 0;
}

.booking-field-content {
    flex: 1;
    min-width: 0;
}

.booking-field-content label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 0.2rem;
    pointer-events: none;
}

.booking-date,
.booking-select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.booking-date:focus,
.booking-select:focus {
    outline: none;
}

.booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.2rem;
}

.booking-divider {
    width: 1px;
    height: 40px;
    background: #e5e5e5;
    flex-shrink: 0;
}

.booking-search-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--lips);
    border: none;
    padding: 1.2rem 2.5rem;
    align-self: stretch;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.booking-search-btn:hover {
    background: var(--lips-light);
}

/* BookVisit widget button override */
#widgetContainer button,
#widgetContainer input[type="submit"],
#widgetContainer input[type="button"],
#widgetContainer a.btn,
#widgetContainer [class*="button"],
#widgetContainer [class*="Button"],
#widgetContainer [class*="submit"],
#widgetContainer [class*="search"],
#widgetContainer [class*="Search"],
.booking-bar-inner button,
.booking-bar-inner input[type="submit"],
.booking-bar-inner [class*="button"],
.booking-bar-inner [class*="Button"] {
    background: #d7a286 !important;
    background-color: #d7a286 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 10px !important;
}

#widgetContainer button:hover,
#widgetContainer input[type="submit"]:hover,
#widgetContainer [class*="button"]:hover,
#widgetContainer [class*="Button"]:hover,
.booking-bar-inner button:hover,
.booking-bar-inner [class*="button"]:hover,
.booking-bar-inner [class*="Button"]:hover {
    background: #e0b69e !important;
    background-color: #e0b69e !important;
}

@media (max-width: 768px) {
    .booking-bar {
        margin-top: -30px;
    }

    .booking-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-field {
        padding: 1rem 1.5rem;
    }

    .booking-divider {
        width: 100%;
        height: 1px;
    }

    .booking-search-btn {
        padding: 1.2rem;
        text-align: center;
    }
}

/* ================================
   Header
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.header.scrolled {
    background: var(--emerald);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 32px;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-list a:hover {
    color: var(--peach);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transform: translateY(2px);
}

.header-actions .menu-toggle {
    margin-left: 1rem;
}

.lang-switch {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-switch:hover {
    opacity: 1;
    color: var(--peach);
}

.lang-switch.active {
    opacity: 1;
}

.lang-divider {
    color: var(--white);
    opacity: 0.4;
    font-size: 0.6rem;
    font-family: var(--font-heading);
}

/* Dropdown */

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 0.75rem 0;
    z-index: 100;
}

.has-dropdown.open .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown li a:hover {
    background: var(--cream);
    color: var(--lips);
}

.dropdown-header {
    padding: 0.5rem 1.5rem 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach);
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.4rem 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ================================
   Hero
   ================================ */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-logo {
    height: 200px;
    width: auto;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--peach);
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--peach);
    margin: 0 auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ================================
   Intro
   ================================ */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-grid-reverse {
    direction: rtl;
}

.intro-grid-reverse > * {
    direction: ltr;
}

.intro-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ================================
   Features
   ================================ */

.section-features {
    background: var(--cream);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--peach);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
}

/* ================================
   Pakker
   ================================ */

.pakker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pakke-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pakke-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23,65,68,0.1);
}

.pakke-image .image-placeholder {
    min-height: 220px;
    border-radius: 0;
}

.pakke-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pakke-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.pakke-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.pakke-includes {
    margin: 1.5rem 0;
}

.pakke-includes li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pakke-includes li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--peach);
    font-size: 0.5rem;
    top: 0.65rem;
}

/* ================================
   Split sections (Overnatting, Mat)
   ================================ */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.room-types {
    margin: 2rem 0;
    display: grid;
    gap: 1.2rem;
}

.room-type {
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--peach);
    background: var(--cream);
}

.room-type h4 {
    text-transform: none;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.room-type p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* ================================
   Sjø og Badehus
   ================================ */

.section-sjobad {
    position: relative;
    padding: 8rem 0;
    color: var(--white);
    overflow: hidden;
}

.sjobad-bg {
    position: absolute;
    inset: 0;
    background: var(--emerald);
    z-index: 0;
}

.sjobad-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.3) 60px,
        rgba(255,255,255,0.3) 120px
    );
}

.sjobad-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sjobad-content h2 {
    color: var(--peach);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.sjobad-content p {
    color: var(--sea-breeze);
    font-size: 1.15rem;
}

.sjobad-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.sjobad-feature {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
}

.sjobad-icon {
    font-size: 2rem;
    color: var(--peach);
    display: block;
    margin-bottom: 1rem;
}

.sjobad-feature h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sjobad-feature p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ================================
   Mat og Drikke
   ================================ */

.mat-highlights {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.mat-highlight {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.mat-highlight strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    min-width: 100px;
}

.mat-highlight span {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
    flex: 1;
}

/* ================================
   Konferanse
   ================================ */

.konferanse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.konferanse-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.konferanse-card:hover {
    border-color: var(--peach);
}

.konferanse-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--peach);
    margin-bottom: 1rem;
}

.konferanse-card h4 {
    text-transform: none;
    font-size: 1.1rem;
}

.konferanse-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.konferanse-extras {
    text-align: center;
}

.konferanse-extras p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ================================
   Lev Livstilen
   ================================ */

.livstil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.livstil-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.livstil-card.large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.livstil-card .image-placeholder {
    min-height: 280px;
    transition: transform 0.5s ease;
}

.livstil-card.large .image-placeholder {
    min-height: 350px;
}

.livstil-card:hover .image-placeholder {
    transform: scale(1.05);
}

.livstil-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(23,65,68,0.85));
    z-index: 1;
}

.livstil-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.livstil-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ================================
   Om Oss
   ================================ */

.section-om {
    background: var(--cream);
}

.om-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.om-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--emerald);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}

/* ================================
   Booking CTA
   ================================ */

.section-cta {
    background: var(--emerald);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-stripes {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255,255,255,0.3) 80px,
        rgba(255,255,255,0.3) 160px
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--peach);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    color: var(--sea-breeze);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach);
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    min-width: 180px;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--peach);
}

.form-input option {
    color: var(--text-dark);
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--emerald-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--peach);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-links h4 + ul {
    margin-bottom: 1.5rem;
}

.footer-about-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-about-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-about-links a:hover {
    color: var(--peach);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--peach);
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--peach);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--peach);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-social a svg {
    width: 100%;
    height: 100%;
}

.footer-social a:hover {
    color: var(--peach);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}

/* ================================
   Animations
   ================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Mobile
   ================================ */

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .nav.open {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(420px, 100vw);
        background: var(--emerald-dark);
        z-index: 999;
        overflow-y: auto;
        padding: calc(var(--header-height) + 1.5rem) 0 3rem;
        box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    }

    /* Mobile nav overlay backdrop */
    .nav.open::before {
        content: '';
        position: fixed;
        inset: 0;
        right: min(420px, 100vw);
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }

    .nav.open .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    /* Category row */
    .nav.open .has-dropdown {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav.open .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.1rem 2rem;
        font-size: 0.65rem;
        letter-spacing: 0.14em;
        color: var(--white);
        width: 100%;
        text-align: left;
    }

    .nav.open .has-dropdown > a::after {
        content: '+';
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 300;
        color: var(--peach);
        opacity: 0.7;
        flex-shrink: 0;
        margin-left: 1rem;
        transition: transform 0.25s ease;
    }

    .nav.open .has-dropdown.open > a {
        color: var(--peach);
    }

    .nav.open .has-dropdown.open > a::after {
        content: '−';
        opacity: 1;
    }

    /* Dropdown panel inline */
    .nav.open .dropdown {
        position: static;
        display: none;
        background: rgba(255,255,255,0.04);
        box-shadow: none;
        border-radius: 0;
        padding: 0.5rem 0 1rem;
        min-width: 0;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav.open .has-dropdown.open .dropdown {
        display: block;
    }

    .nav.open .dropdown li a {
        padding: 0.5rem 2rem 0.5rem 2.5rem;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.65);
        letter-spacing: 0.04em;
        text-transform: none;
    }

    .nav.open .dropdown li a:hover {
        background: transparent;
        color: var(--peach);
    }

    .nav.open .dropdown-header {
        padding: 0.75rem 2rem 0.3rem 2.5rem;
        font-size: 0.55rem;
        letter-spacing: 0.18em;
        color: var(--peach);
        opacity: 0.8;
    }

    .nav.open .dropdown-divider {
        background: rgba(255,255,255,0.07);
        margin: 0.3rem 2rem;
    }

    /* Book link special style */
    .nav.open .nav-book {
        color: var(--peach) !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pakker-grid {
        grid-template-columns: 1fr;
    }

    .konferanse-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .intro-grid,
    .split-section,
    .om-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .livstil-grid {
        grid-template-columns: 1fr 1fr;
    }

    .livstil-card.large {
        grid-column: 1 / -1;
    }

    .sjobad-features {
        grid-template-columns: 1fr;
    }

    .om-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .form-input {
        min-width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    .livstil-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}
