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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0f0e0 100%);
    overflow-x: hidden;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://res.cloudinary.com/dzdinuw5d/image/upload/v1754036192/front-2_ggpeur.png') no-repeat center center/cover;
    z-index: -2;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    width: 90%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
    color: #333;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    font-family: 'Great Vibes', cursive;
    font-size: 4.2rem;
    color: #2f7b3e;
    display: block;
    margin-top: 0.3em;
}

.hero-content p {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #333;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about-section {
    margin: 6rem 0 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e9f4e9 0%, #d1e8d4 50%, #f5faf5 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: url('https://res.cloudinary.com/dzdinuw5d/image/upload/v1754038926/WhatsApp_Image_2025-07-31_at_6.28.54_PM_1_tiivhu.jpg') no-repeat center center/cover;
    opacity: 0.12;
    z-index: -1;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-section h2 {
    font-size: 2.8rem;
    color: #1e3a2e;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2f7b3e, #4a9c5c);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { width: 60px; }
    100% { width: 80px; }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Location & Hours Section */
.visit-hours-section {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    margin: 4rem auto;
}

.map-title {
    grid-column: 1 / -1;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    text-decoration: underline;
}

.map-section {
    position: relative;
    background: #e8f5e8;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(30, 58, 46, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
}

.info-section {
    background: linear-gradient(135deg, #1e3a2e 0%, #2f7b3e 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    margin-bottom: 30px;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #d1e8d4;
}

.location-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #d1e8d4;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #d1e8d4;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #d1e8d4;
}

.directions-btn {
    background: linear-gradient(135deg, #4a9c5c 0%, #2f7b3e 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 156, 92, 0.3);
    text-decoration: none;
    display: inline-block;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 156, 92, 0.4);
}

.hours-list {
    margin-top: 15px;
}

.hours-list p {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #d1e8d4;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content h1 span {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-section h2 {
        font-size: 2.4rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .visit-hours-section {
        grid-template-columns: 1fr;
        max-width: 600px;
        min-height: 400px;
    }

    .info-section {
        padding: 30px 20px;
    }

    .title {
        font-size: 2rem;
    }

    .map-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
        height: auto;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 span {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-section {
        padding: 3rem 1.2rem;
    }

    .about-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .visit-hours-section {
        max-width: 100%;
        padding: 1rem;
        margin: auto;
    }

    .info-section {
        padding: 1.2rem;
    }

    .title {
        font-size: 1.7rem;
    }

    .hours-list p {
        font-size: 1rem;
    }

    .map-title {
        font-size: 1.1rem;
        padding: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 100vh;
        padding: 1.5rem 1rem;
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h1 span {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .about-section h2 {
        font-size: 1.7rem;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .visit-hours-section {
        max-width: 100%;
        min-height: auto;
        padding: 1rem;
    }

    .info-section {
        padding: 1rem;
    }

    .title {
        font-size: 1.4rem;
        text-align: center;
    }

    .hours-list p {
        font-size: 0.9rem;
    }

    .map-title {
        font-size: 1rem;
        padding: 8px;
        text-align: center;
    }
}
