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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Instrument Serif', serif;
    background-image: url('https://res.cloudinary.com/derrickvibe/image/upload/v1768306696/azumah_homepage_bg_zqdmto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    z-index: 100;
}

.logo {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        background-position: 70% center;
    }

    .header {
        padding: 1.25rem 1.5rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        background-position: 75% center;
    }

    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }
}
