:root {
    --green-primary: #2d5016;
    --green-dark: #1a3009;
    --green-light: #4a7c2c;
    --gold-accent: #d4af37;
    --cream: #f8f6f0;
    --white: #ffffff;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--green-dark);
    overflow-x: hidden;
    background: var(--cream);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--green-primary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--green-dark);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
    color: var(--white) !important;
}

.cta-button::after {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 48, 9, 0.85) 0%, rgba(45, 80, 22, 0.7) 50%, rgba(74, 124, 44, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

h1 {
    font-family: 'Righteous', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.primary-cta {
    background: var(--gold-accent);
    color: var(--green-dark);
}

.primary-cta:hover {
    background: #f0c654;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.secondary-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-3px);
}

/* Instructor Section */
.instructor-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.instructor-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: skewX(-15deg);
}

.instructor-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.instructor-image-wrapper {
    float: right;
    margin: 0 0 2rem 3rem;
    position: relative;
    animation: fadeInRight 1s ease-out;
    width: 450px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.instructor-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gold-accent);
    border-radius: 20px;
    z-index: -1;
}

.instructor-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 3.5rem;
    color: var(--green-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.instructor-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Info Cards */
.info-cards {
    padding: 4rem 3rem;
    background: var(--cream);
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out both;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.info-card a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--gold-accent);
}

/* Footer */
footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 3rem 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-content p {
    opacity: 0.8;
    margin-top: 1rem;
}

/* Page Hero Styles */
.page-hero {
    margin-top: 80px;
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero.small {
    height: 30vh;
    min-height: 250px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 48, 9, 0.75) 0%, rgba(45, 80, 22, 0.6) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 300;
}

/* Content Section Styles */
.content-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.lead-paragraph {
    font-size: 1.3rem !important;
    font-weight: 400;
    color: var(--green-dark) !important;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 6rem 3rem;
    background: var(--white);
}

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

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

.pricing-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--gold-accent);
    background: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--green-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--green-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.price {
    font-family: 'Righteous', sans-serif;
    font-size: 3rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.pricing-card p {
    color: #666;
    line-height: 1.6;
}

.instruction-image-section {
    margin: 4rem 0;
    text-align: center;
}

.instruction-image {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--cream);
    border-radius: 20px;
    margin-top: 4rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--green-primary);
    letter-spacing: 1px;
}

.stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
    padding: 4rem 2rem;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    letter-spacing: 10px;
    color: var(--white);
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.coming-soon-divider {
    font-size: 4rem;
    color: var(--gold-accent);
    margin: 2rem 0;
}

.coming-soon-text {
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 2rem;
}

.form-group label {
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d5016' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem 3rem;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-alternative {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--cream);
    border-radius: 20px;
    text-align: center;
}

.contact-alternative h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-method a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--gold-accent);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    .instructor-image-wrapper {
        float: none;
        margin: 0 auto 2rem;
        width: 100%;
        max-width: 500px;
    }

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

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

    .coming-soon-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3.5rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
    }

    h2 {
        font-size: 2.5rem;
    }

    .instructor-image-wrapper {
        width: 100%;
    }

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

    .coming-soon-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .coming-soon-divider {
        font-size: 2.5rem;
    }

    .coming-soon-text {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-alternative {
        padding: 2rem;
    }
}
