/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.6;
    color: #2d1b3d;
    background-color: #fefefe;
}

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

/* Header and Navigation */
header {
    background-color: #f8f6ff;
    border-bottom: 1px solid #e8e0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #5a4a6a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    color: #5a4a6a;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b7aa8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #5a4a6a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 246, 255, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #5a4a6a;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.close-btn:hover {
    color: #8b7aa8;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 1.5rem 0;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: #5a4a6a;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-menu a:hover {
    color: #8b7aa8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0edf7 0%, #e8e0f0 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #4a3a5a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: #6b5b7a;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(139, 122, 168, 0.15);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #4a3a5a;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background-color: #fefefe;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('pebbles.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

@supports (background-image: url('pebbles.webp')) {
    .about::before {
        background-image: url('pebbles.webp');
    }
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a4a6a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(139, 122, 168, 0.15);
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
    background-color: #8b7aa8;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #8b7aa8;
}

.cta-button:hover {
    background-color: #7a6a97;
    border-color: #7a6a97;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 122, 168, 0.3);
}

/* Services Section */
.services {
    background-color: #fefefe;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('pebbles.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

@supports (background-image: url('pebbles.webp')) {
    .services::before {
        background-image: url('pebbles.webp');
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

    .services-intro {
        margin-bottom: 3rem;
    }

.services-intro p {
    font-size: 1.1rem;
    color: #5a4a6a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-approach {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0edf7 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    position: relative;
}

.services-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b7aa8, #a89bc8);
    border-radius: 12px 12px 0 0;
}

.services-approach h3 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a3a5a;
    margin-bottom: 1rem;
}

.services-approach p {
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-approach a {
    color: #8b7aa8;
    text-decoration: none;
    font-weight: 500;
}

.services-approach a:hover {
    text-decoration: underline;
}

.services-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.services-image {
    text-align: center;
}

.services-image img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(139, 122, 168, 0.15);
}

.services-image-mobile {
    display: none;
    margin: 2rem 0;
}

.services-image-desktop {
    display: block;
}

/* Horses Section */
.horses {
    background-color: #f0edf7;
}

.horses-content {
    max-width: 1000px;
    margin: 0 auto;
}

.horses-intro {
    margin-bottom: 3rem;
}

.horses-intro p {
    font-size: 1.1rem;
    color: #5a4a6a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.horses-main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.horses-image {
    text-align: center;
}

.horses-image img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(139, 122, 168, 0.15);
}

.horses-image-mobile {
    display: none;
    margin: 2rem 0;
}

.horses-image-desktop {
    display: block;
}

.horses-benefits {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0edf7 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    position: relative;
}

.horses-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b7aa8, #a89bc8);
    border-radius: 12px 12px 0 0;
}

.horses-benefits h3 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a3a5a;
    margin-bottom: 1rem;
}

.horses-benefits p {
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f0edf7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fefefe;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e8e0f0;
    position: relative;
    box-shadow: 0 4px 15px rgba(139, 122, 168, 0.08);
}



.testimonial-card p {
    color: #5a4a6a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e8e0f0;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #4a3a5a;
    font-weight: 500;
    margin-bottom: 0.25rem;
}



/* Contact Section */
.contact {
    background-color: #fefefe;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('pebbles.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

@supports (background-image: url('pebbles.webp')) {
    .contact::before {
        background-image: url('pebbles.webp');
    }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a3a5a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: #6b5b7a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #8b7aa8;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: #fefefe;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8e0f0;
    box-shadow: 0 4px 15px rgba(139, 122, 168, 0.1);
}

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

.form-group label {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a3a5a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0c0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fefefe;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7aa8;
}

.submit-btn {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #8b7aa8;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #7a6a97;
}

/* Footer */
footer {
    background-color: #f8f6ff;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e8e0f0;
}

footer p {
    color: #6b5b7a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .about-image img {
        max-width: 300px;
        width: 100%;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .about-cta {
        margin-top: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .horses-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .horses-image-mobile {
        display: block;
    }
    
    .horses-image-desktop {
        display: none;
    }
    
    .horses-image img {
        max-width: 250px;
    }
    
    .services-content {
        display: flex;
        flex-direction: column;
    }
    
    .services-intro {
        order: 0;
        margin-bottom: 1rem;
    }
    
    .services-image-mobile {
        display: block;
        order: 1;
        margin: 2rem 0;
        text-align: center;
    }
    
    .services-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        order: 2;
        margin-top: 1rem;
    }
    
    .services-approach {
        order: 1;
    }
    
    .services-image-desktop {
        display: none;
    }
    
    .services-image img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-image img {
        max-width: 250px;
    }
} 