:root {
    --primary-green: #132e2e;
    --accent-green: #425858;
    --button-green: #09786c;
    --text-light: #eaf5f1;
    --font-main: 'Solway', serif;
}

body {
    margin: 0;
    font-family: 'Zilla Slab', serif;
    background-color: var(--primary-green);
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1.6;
}

.text-sm {
    font-size: 0.88rem;
    letter-spacing: 0em;
    line-height: 1.6;
}

.text-lg {
    font-size: 1.13rem;
    letter-spacing: 0em;
    line-height: 1.6;
}

.text-xl {
    font-size: 1.5rem;
    letter-spacing: 0em;
    line-height: 1.6;
}

.text-xxl {
    font-size: 2rem;
    letter-spacing: 0em;
    line-height: 1.6;
}

blockquote {
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.3em;
    border-left: 3px solid currentColor;
    padding: 0.75em 1.25em;
    border-radius: 0;
}

h1 {
    font-size: 3.05rem;
    letter-spacing: -0.01em;
    line-height: 1.04em;
    margin-bottom: 0.3em;
}

h2 {
    font-size: 1.95rem;
    letter-spacing: -0.01em;
    line-height: 1.04em;
    margin-bottom: 0.35em;
}

h3 {
    font-size: 1.56rem;
    letter-spacing: -0.01em;
    line-height: 1.04em;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3em;
    margin-bottom: 0.5em;
}

h5 {
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1.3em;
    margin-bottom: 0.7em;
}

h6 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    line-height: 1.3em;
    margin-bottom: 0.7em;
}

@media (max-width: 1024px) {
    .text-xxl { font-size: 1.8rem; }
    .text-xl { font-size: 1.4rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 768px) {
    .text-xxl { font-size: 1.6rem; }
    .text-xl { font-size: 1.3rem; }
    h3 { font-size: 1rem; }
}

@media (max-width: 480px) {
    .text-xxl { font-size: 1.4rem; }
    .text-xl { font-size: 1.2rem; }
    h3 { font-size: 0.8rem; }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary-green);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-green);
    border-radius: 8px;
}

nav {
    z-index: 10;
    position: relative;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1rem;
    font-size: 1rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    padding: 1em 1.5em;
    font-size: 1rem;
    font-family: 'Zilla Slab', serif;
    background-color: transparent;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown > a::after {
    content: "\25BE";
    font-size: 0.75rem;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 16px;
    margin-top: 0.5rem;
    left: 0;
    top: 100%;
}

.dropdown-content a {
    color: var(--primary-green);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    font-family: 'Zilla Slab', serif;
}

.dropdown-content a:hover {
    background-color: white;
    color: var(--primary-green);
    border-radius: 10px;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
}

.dropdown:hover > a {
    background-color: var(--accent-green);
    color: var(--text-light);
    border-radius: 10px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-video {
    flex: 1 1 300px;
    text-align: center;
}

.hero-video video {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
}

.hero-text {
    flex: 1 1 300px;
    max-width: 500px;
}

.hero-text h1 {
    font-family: 'Solway', serif;
    font-weight: 400;
    font-size: 3.05rem;
    letter-spacing: -0.01em;
    line-height: 1.04em;
    margin-bottom: 0.3em;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 0.7em;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    font-family: 'Zilla Slab', serif;
    background-color: #113d3b;
    border: none;
    padding: 1em 1.5em;
    color: white;
    font-size: 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn:hover {
    background-color: #123534;
}
.btn-visit {
    background-color: var(--button-green);
}

.btn-visit:hover {
    background-color: #0db19f;
}

.info-section {
    background-color: white;
    color: var(--primary-green);
    padding: 4rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-title {
    font-family: var(--font-main), serif;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    max-width: 640px;
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.6;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    flex: 1 1 300px;
    max-width: 360px;
}

.info-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 4rem 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    order: -1; /* This forces it to appear before the others */
    flex: 1 1 100%;
}

.footer-main h3 {
    font-family: var(--font-main), serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-main p a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.social-icons span {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.footer-credit {
    font-size: 0.88rem;
    margin-top: 1rem;
    text-align: right;
}

.no-bottom-margin {
    margin-bottom: 0;
}

.no-top-margin {
    margin-top: 0;
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-social {
        align-items: flex-start;
    }
}
