/* Maker of Adventure - Nature/Rugged Theme */

:root {
    --primary-green: #2d5a27;
    --dark-green: #1a3317;
    --earth-brown: #5d4037;
    --slate-gray: #455a64;
    --off-white: #f5f5f5;
    --text-color: #333;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-image: linear-gradient(rgba(245, 245, 245, 0.7), rgba(245, 245, 245, 0.7)), url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-color);
}

header {
    background-color: var(--dark-green);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.hero {
    height: 60vh;
    background: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.9);
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.8), 1px 1px 2px rgba(0,0,0,0.9);
}

.sub-hero {
    height: 30vh;
    background: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.sub-hero h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.9);
}

nav {
    background-color: var(--primary-green);
    padding: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
}

nav a:hover {
    background-color: var(--dark-green);
    border-radius: 4px;
}

.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    width: 100%;
}

h1, h2 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-left: 5px solid var(--primary-green);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .sub-hero {
        height: 25vh;
    }

    .sub-hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 1.5rem;
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--earth-brown);
    font-weight: bold;
}

.social-link:hover {
    color: var(--primary-green);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.project-card {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.btn:hover {
    background: var(--dark-green);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--slate-gray);
    font-size: 0.9rem;
}

/* Mobile Navigation Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
        margin: 0 auto;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }
}
      gap: 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
}
