@font-face {
    font-family: 'ABC Diatype';
    src: url('fonts/ABCDiatype Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'ABC Diatype', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
}

.hero {
    min-height: 100vh;
    background-image: url('images/lofoten.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    opacity: 0.9;
}

.footer {
    margin-top: auto;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.8;
}

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