/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: rgb(49, 26, 15);
    /* R49 G26 B15 */
    --color-light: #ffffff;
    /* White */
    --color-accent: rgb(185, 139, 89);
    /* R185 G139 B89 */
    --color-accent-hover: rgb(165, 119, 69);
    /* Slightly darker for hover */
    --color-text: #333333;
    --color-nav-text: #ffffff;

    /* Alias for new layout */
    --secondary-color: var(--color-dark);
    --gold-color: var(--color-accent);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 3rem;
    width: auto;
    transition: opacity 0.3s;
}

.nav-logo-img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-nav-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

/* Hero Section */
/* Padding top to account for fixed nav */
.main-content {
    padding-top: 80px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 4rem;
    /* Increased spacing */
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* Info Sections */
.info-section {
    padding: 2rem 1.5rem;
    background-color: var(--color-light);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block.last-block {
    margin-bottom: 3rem;
    text-align: center;
}

.info-block h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-block p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 3rem 1.5rem 5rem;
    text-align: center;
    background-color: var(--color-light);
}

.cta-section p {
    margin-bottom: 3rem;
    /* Increased spacing */
    font-size: 1.25rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: var(--color-dark);
    /* Using one of the predominant colors */
    color: var(--color-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid var(--color-dark);
}

.btn-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-light);
    /* Or dark if better contrast */
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-nav-text);
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-nav-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    /* Controlled by JS or media query fallback */
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--color-nav-text);
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .info-block h2 {
        font-size: 1.75rem;
    }
}

/* Homepage New Layout */
.info-block.with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.info-block.with-image.reverse {
    flex-direction: row-reverse;
}

.text-side {
    flex: 1;
    min-width: 300px;
}

.image-side {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.alternate-bg {
    background-color: #f9f9f9;
}

/* Activities Preview Grid */
.grid-3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.card-preview {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 1 300px;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
    /* Extra safety */
}

.card-preview:hover {
    transform: translateY(-5px);
}

.card-preview h3 {
    color: var(--secondary-color);
    margin: 1rem 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--gold-color);
}