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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Mobile First Approach */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #333 !important;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #879eab !important;
}

.cta-button {
    background: #879eab !important;
    color: white !important;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #879eab;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-button:hover {
    background: #6d8a99 !important;
    color: white !important;
    border: 2px solid #6d8a99;
}

/* Hero Section - Responsive */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    min-height: 400px;
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
    transform: translateY(-10%);
}

/* About Section */
.about {
    padding: 3rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #879eab;
    font-size: 2rem;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: black;
    line-height: 1.6;
}

/* Gallery Section - Fully Responsive */
.gallery {
    padding: 3rem 0;
    background: #879eab;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 3px solid white;
    display: block;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Location Section */
.location {
    padding: 3rem 0;
    background: white;
}

.location h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #879eab;
    font-size: 2rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.location-info h3 {
    margin-bottom: 1rem;
    color: #879eab;
}

.location-info p {
    color: black;
    margin-bottom: 1rem;
}

.location-info ul {
    list-style: none;
    margin-top: 1rem;
}

.location-info li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    color: black;
}

.location-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #879eab;
    font-weight: bold;
}

.map-placeholder {
    height: 250px;
}

.map-box {
    background: #879eab;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid #879eab;
    text-align: center;
    padding: 1rem;
}

/* More Information Section */
.more-info {
    padding: 3rem 0;
    background: #879eab;
}

.more-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.brochure-section, .contact-section {
    background: white;
    color: black;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.brochure-section h3, .contact-section h3 {
    color: #879eab;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.brochure-section p, .contact-section p {
    margin-bottom: 1.5rem;
    color: black;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #879eab;
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.download-button:hover {
    background: #6d8a99;
}

.contact-details {
    text-align: left;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: black;
    font-size: 0.9rem;
}

/* Redirect Section */
.redirect-section {
    padding: 3rem 0;
    background: white;
    color: black;
    text-align: center;
}

.redirect-section h2 {
    margin-bottom: 1rem;
    color: #879eab;
    font-size: 2rem;
}

.redirect-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: black;
}

.redirect-button {
    background: #879eab;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.redirect-button:hover {
    background: #6d8a99;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #879eab;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
    .nav {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .logo-img {
        height: auto;
        width: 75%; /* 3/4 of container width */
        max-width: none; /* Remove max-width restriction */
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        margin: 0 0.3rem;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero {
        height: calc(100vh - 60px);
        min-height: 350px;
    }
    
    .about h2, .gallery h2, .location h2, .more-info h2, .redirect-section h2 {
        font-size: 1.8rem;
    }
    
    .about p, .redirect-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 0 10px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .location-content {
        gap: 1.5rem;
    }
    
    .map-placeholder {
        height: 200px;
    }
    
    .brochure-section, .contact-section {
        padding: 1.5rem;
    }
    
    .download-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .redirect-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 10px;
    }
    
    .logo-img {
        height: auto;
        width: 75vw; /* 3/4 of viewport width for very small screens */
        max-width: none;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        margin: 0 0.2rem;
    }
    
    .hero {
        margin-top: 80px;
        height: calc(100vh - 80px);
        min-height: 300px;
    }
    
    .about, .gallery, .location, .more-info, .redirect-section {
        padding: 2rem 0;
    }
    
    .about h2, .gallery h2, .location h2, .more-info h2, .redirect-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .brochure-section, .contact-section {
        padding: 1rem;
    }
    
    .download-button {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .location-content, .info-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Add these styles to your existing CSS */

/* Mapbox Map Styling */
.map-placeholder {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Mapbox popup styling */
.mapboxgl-popup-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 0;
}

.mapboxgl-popup-content h3 {
    color: #879eab;
    margin-bottom: 0.5rem;
}

/* Make marker clickable cursor */
.mapboxgl-marker {
    cursor: pointer;
}

@media (max-width: 768px) {
    .map-placeholder {
        height: 250px;
    }
}