/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Lexend", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #007bff;
}

/* Home Section: Full Screen  */
#home {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #222;
}

#home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; 
    display: block;
}

/* --- Responsive Breakpoints --- */

/* Tablets (Portrait) */
@media (max-width: 1024px) {
    #home {
        height: 60vh; /* Shorter height for tablets */
    }
    .nav-container {
        gap: 1.5rem;
    }
}

/* Mobile Phones (Large & Small) */
@media (max-width: 768px) {
    #home {
        height: 50vh; /* Standard mobile height */
    }
    
    /* Ensure grid items take up more space on small screens */
    .activities-grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
    }

    .nav-container {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.5rem; /* Scale down text to avoid overlapping */
    }
}

/* Landscape Mode for Phones */
@media (max-height: 500px) and (orientation: landscape) {
    #home {
        height: 100vh; /* On landscape phones, 100vh actually looks good */
    }
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Container for Content */
.container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

h2,
h3 {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Activities: Inline Grid  */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.activity-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.activity-item:hover {
    transform: translateY(-5px);
}

/* Contacts: List  */
.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a {
    color: #007bff;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
}