/* ===================================
   Variables & Reset
   =================================== */
:root {
    /* Colors - Earthy, feminine palette */
    --primary-color: #8B6F47;        /* Warm brown/fox color */
    --primary-dark: #6B5437;
    --primary-light: #A38B6A;
    --accent-color: #B8956A;         /* Golden accent */
    --secondary-color: #9B8579;      /* Soft mauve */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --background-light: #FAF8F5;     /* Warm off-white */
    --background-white: #FFFFFF;
    --border-color: #E8E3DC;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--background-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--background-white);
    border-color: var(--background-white);
}

.btn-secondary:hover {
    background-color: var(--background-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-menu .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B6F47 0%, #B8956A 100%);
    background-image:
        linear-gradient(135deg, rgba(139, 111, 71, 0.85) 0%, rgba(184, 149, 106, 0.85) 100%),
        url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--background-white);
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--background-white);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--background-white);
    border-bottom: 2px solid var(--background-white);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

/* ===================================
   Section Styling
   =================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Is This You Section
   =================================== */
.is-this-you {
    background-color: var(--background-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-image img {
    width: 100%;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===================================
   What You'll Gain Section
   =================================== */
.what-youll-gain {
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   Coaching Section
   =================================== */
.coaching {
    background-color: var(--background-white);
}

.coaching-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.coaching-approach h3,
.coaching-includes h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-list p {
    color: var(--text-light);
    margin-bottom: 0;
}

.includes-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.includes-card {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.includes-card:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    transform: translateX(10px);
}

.includes-card:hover .card-icon {
    transform: scale(1.2);
}

.includes-card:hover h4,
.includes-card:hover p {
    color: var(--background-white);
}

.card-icon {
    font-size: 2.5rem;
    transition: var(--transition);
}

.includes-card h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.includes-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    color: var(--background-white);
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border-color: var(--background-white);
}

.cta-section .btn-primary:hover {
    background-color: var(--background-light);
    transform: translateY(-3px);
}

/* ===================================
   Why Wild Fox Section
   =================================== */
.why-wild-fox {
    background-color: var(--background-light);
}

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

.why-card {
    text-align: center;
    padding: 20px;
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.why-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===================================
   Quotes Section
   =================================== */
.quotes {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.quotes .section-header h2 {
    color: var(--background-white);
}

.quotes-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.quote-card {
    display: none;
    text-align: center;
}

.quote-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quote-card blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
}

.quote-card p {
    margin: 0;
}

/* ===================================
   Story Section
   =================================== */
.story {
    background-color: var(--background-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.story-image img {
    width: 100%;
}

.story-intro {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.story-conclusion {
    font-size: 1.2rem;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background-color: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
}

.contact-method h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-method a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--background-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--background-white);
    margin-bottom: 20px;
}

.footer-tagline {
    font-style: italic;
    color: var(--background-light);
    opacity: 0.8;
}

.footer-links h4,
.footer-connect h4 {
    color: var(--background-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--background-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-connect p {
    color: var(--background-light);
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-connect .social-link {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--background-light);
    opacity: 0.6;
    margin: 0;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 100px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a::after {
        display: none;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .scroll-indicator {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .content-grid,
    .coaching-grid,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo-image {
        height: 80px;
    }

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

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

    .scroll-indicator {
        font-size: 0.85rem;
        bottom: 30px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .benefits-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .quote-card blockquote {
        font-size: 1.5rem;
    }
}
