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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-green: #4a9d6f;
    --primary-green-light: #6ec26f;
    --accent-green: #3d8b4f;
    --dark-bg: #0d2818;
    --light-bg: #1a4d2e;
    --light-text: #f1f5f9;
    --muted-text: #cbd5e1;
    --border-color: #2d6a45;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* background: rgba(51, 51, 51, 0.1); */
    /* backdrop-filter: blur(10px); */
    /* border-bottom: 1px solid #fff; */
    padding: 1rem 0;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0 2rem;
}

.nav-brand {
    flex: 1;
}

.nav-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-link:hover {
    color: var(--primary-blue-light);
}

.nav-link.cta-link {
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 20px;
    padding: 0.1rem 0 0.5rem 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link.cta-link:hover {
    background: var(--primary-blue-light);
    color: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 120vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: self-end;
    justify-content: center;
    position: relative;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0) 0%, rgba(26, 77, 46, 0.33) 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-title.animated {
    animation: fadeInUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-blue-light);
    transform: translateY(-6px);
    box-shadow: 0 8px 8px rgba(111, 111, 111, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--muted-text);
}

.btn-secondary:hover {
    background: var(--muted-text);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

section.about-container {
    margin: 9rem auto 0px;
    text-align: left;
    background-color: rgba(11, 11, 11, 0.5);
    border-radius: 1em;
    padding: 2rem;
    max-width: 700px;
}



/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-links {
        flex-direction: column;
        gap: 1rem;
    }

    .link-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .nav-name {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero {
        padding-top: 140px;
        align-items: flex-start;
    }

    section {
        padding: 3rem 0;
    }
}
