/* ----- GLOBALT ----- */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

/* ----- HEADER ----- */

header {
    display: flex;
    justify-content: space-between;   /* logo venstre, meny høyre */
    align-items: center;
    padding: 10px 30px;               /* mindre header */
    background: #f6f6f6;             
    color: black;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;                        /* mellomrom mellom logo og navn */
}

.header-left img {
    height: 45px;                     /* størrelse på logo */
    width: auto;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;                /* mindre og penere */
    font-weight: 600;
}

nav a {
    color: black;
    margin-left: 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
}

nav a:hover {
    text-decoration: underline;
}

nav a {
    color:black;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* ----- HERO-BILDET ----- */

/* --- HERO STIL --- */

/* --- HERO STIL --- */

.hero {
    width: 100%;
    height: 60vh;            /* hero tar 60% av skjermen */
    min-height: 380px; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;        /* midtstiller vertikalt */
    padding-left: 5%;           /* luft fra venstre */
    position: relative;
    color: white;
}

.hero-content {
    width: 35%;                 /* tekstområde = venstre 30% */
    max-width: 450px;           
}

.hero-content h1 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    text-shadow:
        0 0 6px rgba(0,0,0,0.35),
        0 0 12px rgba(0,0,0,0.30);
}

/* ------ TUR-BOKS SIDE-BY-SIDE LAYOUT ------ */

/* ------ TUR-BOKS MED SORT BORDER ------ */

.tour-box {
    display: flex;
    gap: 30px;
    padding: 25px;                  /* luft inni boksen */       /* sort ramme */
    border-radius: 15px;            /* avrundede hjørner */
    align-items: center;
    background: none;               /* ingen bakgrunnsfarge */
    color: inherit;                 /* bruk vanlig tekstfarge */
}

.tour-image img {
    width: 330px;
    max-width: 100%;
    border-radius: 10px;
}

.tour-text {
    flex: 1;
}

.tour-text h2 {
    margin-top: 0;
}

/* Mobil: stable alt */
@media (max-width: 800px) {
    .tour-box {
        flex-direction: column;
        text-align: center;
    }
    .tour-image img {
        width: 100%;
    }
}

/* ----- KONTAKT-SIDE SIDE-BY-SIDE LAYOUT ----- */

.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.contact-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-text {
    flex: 1;
    font-size: 1.15rem;
}

/* Responsivt (mobilvennlig) */
@media (max-width: 750px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }
}
/* ----- SEKSJONER ----- */

.section {
    max-width: 1000px;
    margin: 60px auto;   /* større marger */
    padding: 0 40px;     /* bredere sidemargin */
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section p {
    font-size: 1.15rem;
}

/* ----- GALLERI ----- */

.gallery {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform .2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* ----- FOOTER ----- */

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 35px 20px;
    margin-top: 80px;
}

@media (max-width: 900px){

    .hero-content h1 {
        font-size: 2.2rem;
    }

}
``
