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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fffef9;
}

/* Header */
header {
    background: #fdfbf7;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f9c74f 0%, #f4a261 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(249, 199, 79, 0.3);
}

.logo-icon i {
    font-size: 1.1rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    justify-content: center;
}

.logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d5a3d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a3d26;
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    background-image: url('static/hero.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    display: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-btn {
    display: inline-block;
    background: #f9c74f;
    color: #2d5a3d;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(249, 199, 79, 0.4);
}

.hero-btn:hover {
    background: #f4a261;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 199, 79, 0.6);
}

/* Section 1: Gallery */
.gallery-section {
    padding: 3rem 2rem;
    background: #fdfbf7;
    height: 100vh;
    display: flex;
    align-items: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-size: 2.5rem;
}

.gallery-section .section-title {
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    color: #6b8f7a;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Carousel Gallery */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.carousel-wrapper {
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Side images - smaller */
.carousel-item.side {
    width: 300px;
    height: 300px;
    opacity: 0.6;
    transform: scale(0.85);
}

/* Center image - larger and featured */
.carousel-item.center {
    width: 500px;
    height: 500px;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: #7ec8a3;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #5eb088;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(126, 200, 163, 0.3);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4e6db;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: #7ec8a3;
    transform: scale(1.2);
}

/* Section 2: About */
.about-section {
    padding: 5rem 2rem;
    background: #fffef9;
    min-height: 100vh;
}

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

.about-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(126, 200, 163, 0.15);
    border: 2px solid #e8f5ed;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 200, 163, 0.25);
}

.about-card h3 {
    color: #2d5a3d;
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.about-card p, .about-card ul {
    color: #6b8f7a;
}

.about-card ul {
    list-style: none;
    margin-top: 0.5rem;
}

.about-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-card ul li::before {
    content: "🌱";
    position: absolute;
    left: 0;
}

/* Highlight Box */
.highlight-box {
    background: #7ec8a3;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
    color: #ffffff;
}

.highlight-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.highlight-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 1;
}

/* Section 3: Contact */
.contact-section {
    padding: 5rem 2rem;
    background: #fdfbf7;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #a8d5ba 0%, #7ec8a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-details {
    display: flex;
    align-items: center;
}

.contact-details p, .contact-details a {
    color: #2d5a3d;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details a:hover {
    color: #2d5a3d;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background: #fffef9;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.testimonials {
    width: 100%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-grid .testimonial-card {
    grid-column: span 2;
}

.testimonial-grid .testimonial-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.testimonial-grid .testimonial-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-text {
    color: #6b8f7a;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #2d5a3d;
    font-weight: 600;
}

.stars {
    color: #f9c74f;
    margin-bottom: 0.5rem;
}

.yelp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d32323;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 2rem;
    transition: background 0.3s;
}

.yelp-link:hover {
    background: #af1d1d;
}

/* Footer */
footer {
    background: #ffffff;
    color: #2d5a3d;
    text-align: center;
    padding: 2rem;
}

footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .carousel-item.center {
        width: 300px;
        height: 300px;
    }

    .carousel-item.side {
        width: 150px;
        height: 150px;
    }

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

    .highlight-stats {
        gap: 1.5rem;
    }

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

    .hero-section {
        min-height: calc(100vh - 70px);
    }

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

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