/* RESET & GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* NAVIGATION */
.navbar {
    background-color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #333333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9b9b7a;
}

/* HERO SECTION */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.headshot {
    width: 280px;
    height: 280px;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tagline {
    font-size: 1.4rem;
    color: #c9c9a3;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.btn-primary {
    background-color: #9b9b7a;
    color: #ffffff;
    border-color: #9b9b7a;
    box-shadow: 0 4px 15px rgba(155, 155, 122, 0.2);
}

.btn-primary:hover {
    background-color: #8a8a6a;
    border-color: #8a8a6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 155, 122, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #9b9b7a;
    border-color: #9b9b7a;
}

.btn-secondary:hover {
    background-color: #9b9b7a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 155, 122, 0.3);
}

/* QUICK FACTS */
.quick-facts {
    background-color: #f5f5f0;
    padding: 4rem 0;
    border-top: 1px solid #e8e8e0;
    border-bottom: 1px solid #e8e8e0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.fact h3 {
    font-size: 2.5rem;
    color: #9b9b7a;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.fact p {
    font-size: 0.95rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ABOUT SECTION */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.training-box {
    background-color: #f5f5f0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #9b9b7a;
}

.training-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

.training-box ul {
    list-style: none;
}

.training-box li {
    margin-bottom: 0.8rem;
    color: #666666;
    font-size: 0.95rem;
}

/* DOWNLOADS SECTION */
.downloads {
    padding: 6rem 0;
    background-color: #f5f5f0;
}

.downloads h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.download-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #9b9b7a;
}

.download-card .icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333333;
}

.download-card p {
    font-size: 0.9rem;
    color: #999999;
}

/* CREDITS SECTION */
.credits {
    padding: 6rem 0;
    background-color: #ffffff;
}

.credits h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.credit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #9b9b7a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.credit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 500;
}

.credit-item p {
    margin: 0.6rem 0;
    color: #666666;
    font-size: 0.95rem;
}

/* GALLERY PREVIEW */
.gallery-preview {
    padding: 6rem 0;
    background-color: #f5f5f0;
}

.gallery-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-cta {
    text-align: center;
}

/* CONTACT SECTION */
.contact {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%);
    padding: 6rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact > .container > p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2.5rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-details {
    font-size: 0.95rem;
    color: #999999;
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.social-links a {
    padding: 1rem 2rem;
    background-color: #9b9b7a;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid #9b9b7a;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(155, 155, 122, 0.2);
}

.social-links a:hover {
    background-color: transparent;
    color: #9b9b7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 155, 122, 0.4);
}

/* FOOTER */
footer {
    background-color: #f5f5f0;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #e8e8e0;
}

footer p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-credit {
    color: #9b9b7a;
    font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero {
        height: 550px;
    }

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

    .tagline {
        font-size: 1.1rem;
    }

    .headshot {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 4rem 0 !important;
    }

    section h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credits-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 250px;
    }

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

    .social-links a {
        width: 100%;
    }
}