@font-face {
    font-family: 'Bauhaus';
    src: url('../fonts/BAUHS93.TTF') format('truetype');
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #263238;
    background: #f7f3ee;
}

.hero {
    position: relative;
    color: white;
}

.hero img {
    width: 100%;
    height: 55vh;
    min-height: 320px;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text {
    position: absolute;
    left: 7%;
    bottom: 8%;
    max-width: 520px;
    background: rgba(0, 0, 0, 0.46);
    padding: 28px 32px;
    border-radius: 14px;
}

h1, h2 {
    font-family: 'Bauhaus', Arial, sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    margin: 0 0 8px;
}

h2 {
    font-size: 2.2rem;
    color: #0f5f7a;
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 22px;
}

section {
    max-width: 1050px;
    margin: 42px auto;
    padding: 34px 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.button {
    display: inline-block;
    background: #0f7fa8;
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
}

.button:hover {
    background: #095f7f;
}

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

.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
}

.video-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

a {
    color: #0f7fa8;
}

@media (max-width: 700px) {
    .hero-text {
        left: 5%;
        right: 5%;
        bottom: 5%;
        padding: 22px;
    }

    h1 {
        font-size: 2.7rem;
    }
}