/* Color palette from Mt Cook topo map */
:root {
    --glacier-blue: #4A90A4;
    --sky-blue: #7FB3C4;
    --terrain-tan: #C9A982;
    --terrain-brown: #8B7355;
    --dark-navy: #2C3E50;
    --text-dark: #2C3E50;
    --text-light: #F5F1E8;
    --accent-gold: #D4AF37;
    --map-beige: #F5EFE0;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--map-beige);
    position: relative;
    overflow-x: hidden;
}

/* Topo map background - more visible */
.topo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/mt-cook-topo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--accent-gold);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 10px;
}

/* Hero Section */
.hero-section {
    padding: 1rem 0 1rem;
}

.main-logo {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 0.25rem;
}

.subheading {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Visual Showcase */
.visual-showcase {
    margin-bottom: 1.5rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Map Container */
.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-frame {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 6px solid var(--terrain-brown);
    max-width: 500px;
    width: 100%;
}

.historic-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-top: 1.5rem;
    text-align: center;
}

/* Canoe Container */
.canoe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.canoe-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.9);
}

.canoe-caption {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-top: 1rem;
    text-align: center;
    max-width: 500px;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--glacier-blue);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 144, 164, 0.25);
    border-color: var(--accent-gold);
}

.service-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.service-box p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: center;
}

/* Email Section */
.email-section {
    padding: 2rem 0;
    text-align: center;
}

.email-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.6;
}

.email-link:hover {
    color: var(--glacier-blue);
    opacity: 1;
}

/* Footer */
footer {
    background: rgba(44, 62, 80, 0.95);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
}

footer p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-logo {
        max-width: 350px;
    }

    .subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .main-logo {
        max-width: 280px;
    }

    .subheading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .map-frame {
        padding: 1rem;
        border: 4px solid var(--terrain-brown);
    }

    .service-box {
        padding: 2rem 1.5rem;
    }

    .canoe-img {
        max-width: 100%;
    }

    .hero-section {
        padding: 0.5rem 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 220px;
    }

    .subheading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 0.25rem 0 0.25rem;
    }
}
