/* Wolfgulch LLC Artisan Styles - Warm Earth Tones Theme */
:root {
    --warm-brown: #8B4513;
    --rust-orange: #D2691E;
    --clay-red: #B85450;
    --sand-beige: #F5DEB3;
    --earth-brown: #A0522D;
    --deep-brown: #654321;
    --cream: #FFF8DC;
    --terracotta: #E2725B;
    --golden-yellow: #DAA520;
    --forest-green: #556B2F;
    --charcoal: #36454F;
    --light-earth: #D2B48C;
}

/* Global Overrides */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
}

/* Navigation Styles */
.craft-top-bar {
    background-color: var(--warm-brown);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

.brand-mark a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--cream);
}

.logo-symbol {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--golden-yellow);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cream);
}

.navigation-links {
    margin: 0;
}

.navigation-links li a {
    color: var(--cream);
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navigation-links li a:hover,
.navigation-links li.active-page a {
    background-color: var(--rust-orange);
    color: var(--cream);
}

/* Hero Section */
.hero-artisan {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sand-beige) 0%, var(--light-earth) 100%);
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Button Styles */
.button.primary-action {
    background-color: var(--rust-orange);
    color: var(--cream);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.button.primary-action:hover {
    background-color: var(--clay-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.4);
}

.button.secondary-action {
    background-color: transparent;
    color: var(--earth-brown);
    border: 2px solid var(--earth-brown);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.button.secondary-action:hover {
    background-color: var(--earth-brown);
    color: var(--cream);
    transform: translateY(-2px);
}

.button.learn-more-btn {
    background-color: var(--forest-green);
    color: var(--cream);
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button.learn-more-btn:hover {
    background-color: var(--warm-brown);
    transform: translateY(-2px);
}

.button.expanded-btn {
    background-color: var(--golden-yellow);
    color: var(--deep-brown);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.button.expanded-btn:hover {
    background-color: var(--rust-orange);
    color: var(--cream);
    transform: translateY(-2px);
}

/* Studio Introduction */
.studio-introduction {
    padding: 5rem 0;
    background-color: var(--cream);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
}

.intro-content {
    padding: 2rem 0;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--earth-brown);
    text-align: center;
    margin-bottom: 3rem;
}

/* Classes Overview */
.classes-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sand-beige) 0%, var(--cream) 100%);
}

.class-cards {
    margin-top: 3rem;
}

.class-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.25);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.class-name {
    font-size: 1.6rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.class-description {
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--rust-orange);
}

.price-period {
    color: var(--earth-brown);
    font-size: 1rem;
}

/* Benefits Section */
.studio-benefits {
    padding: 5rem 0;
    background-color: var(--light-earth);
}

.benefits-grid {
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--rust-orange);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.4rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--earth-brown);
    line-height: 1.6;
}

/* Testimonials */
.student-testimonials {
    padding: 5rem 0;
    background-color: var(--cream);
}

.testimonial-grid {
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: var(--deep-brown);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--earth-brown);
    font-size: 0.9rem;
}

/* Contact CTA */
.contact-callout {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--rust-orange) 0%, var(--clay-red) 100%);
    color: var(--cream);
}

.cta-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
}

.button.cta-button {
    background-color: var(--golden-yellow);
    color: var(--deep-brown);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.button.cta-button:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.4);
}

/* Footer */
.studio-footer {
    background-color: var(--deep-brown);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-heading {
    color: var(--golden-yellow);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-description {
    line-height: 1.7;
    color: var(--light-earth);
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu li a {
    color: var(--light-earth);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--golden-yellow);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-earth);
}

.footer-contact li i {
    color: var(--rust-orange);
    width: 16px;
}

.footer-contact a {
    color: var(--light-earth);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--golden-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--earth-brown);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--light-earth);
}

/* Cookie Consent */
.cookie-consent-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--deep-brown);
    color: var(--cream);
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-box.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-message {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-learn-more {
    color: var(--golden-yellow);
    text-decoration: none;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.button.cookie-accept {
    background-color: var(--forest-green);
    color: var(--cream);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button.cookie-accept:hover {
    background-color: var(--golden-yellow);
    color: var(--deep-brown);
}

.button.cookie-decline {
    background-color: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button.cookie-decline:hover {
    background-color: var(--cream);
    color: var(--deep-brown);
}

/* Form Styles */
.form-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
}

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

.form-group label {
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-earth);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rust-orange);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

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

.submit-button {
    background-color: var(--rust-orange);
    color: var(--cream);
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--clay-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.4);
}

/* Gallery Styles */
.gallery-grid {
    margin-top: 3rem;
}

.gallery-item {
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
}

.gallery-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--earth-brown);
    font-style: italic;
}

/* Blog Styles */
.blog-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.blog-article {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.25);
}

.blog-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 2.5rem;
}

.blog-title {
    font-size: 1.8rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.blog-meta {
    color: var(--earth-brown);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-excerpt {
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-full-content {
    display: none;
    color: var(--earth-brown);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.blog-full-content.show {
    display: block;
}

.read-more-btn {
    background-color: var(--forest-green);
    color: var(--cream);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.read-more-btn:hover {
    background-color: var(--warm-brown);
    transform: translateY(-2px);
}

/* Maps */
.map-container {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Responsive Design */
@media screen and (max-width: 640px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .navigation-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--sand-beige) 0%, var(--light-earth) 100%);
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.thank-you-title {
    font-size: 3rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--earth-brown);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.policy-content {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--deep-brown);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--earth-brown);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Team Member Styles */
.team-grid {
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.team-name {
    font-size: 1.6rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--rust-orange);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--earth-brown);
    line-height: 1.6;
}

/* Class Detail Styles */
.class-detail {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
    margin-bottom: 3rem;
}

.class-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.class-detail-content {
    padding: 2.5rem;
}

.class-detail-title {
    font-size: 2rem;
    color: var(--deep-brown);
    font-weight: bold;
    margin-bottom: 1rem;
}

.class-detail-price {
    font-size: 1.5rem;
    color: var(--rust-orange);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.class-detail-description {
    color: var(--earth-brown);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .top-bar-right {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    .top-bar-right.show {
        display: block;
    }

    .navigation-links {
        flex-direction: column;
        width: 100%;
    }

    .navigation-links li {
        width: 100%;
        text-align: center;
    }

    .navigation-links li a {
        display: block;
        padding: 1rem;
    }
}

.top-bar, .top-bar ul {
    background-color: initial;
}