/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Mobile Header Styles extracted to header.html */
@media screen and (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 400px;
        background-position: top;
        padding-top: 150px;
        padding-bottom: 50px;
    }
    .hero-content h1 {
        font-size: 3.2rem !important;
        line-height: 1.1;
        font-weight: 700;
    }
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        /* max-width: 300px; */
    }
}

/* Hero Section */
.hero-section {
    background: url('../img/banner.jpg') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: Georgia, serif;
}

.white-text {
    color: #ffffff;
}

.green-text {
    color: #8cc63f;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #8cc63f;
    color: white;
    border: 2px solid #8cc63f;
}

.btn-primary:hover {
    background: #7ab332;
    border-color: #7ab332;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Services */
.services-section {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
}

.service-card img {
    height: 8em;
    margin-bottom: 20px;
}

.learn-more {
    color: #2c4a3b;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us-section {
    background: #f4f6f7;
    padding: 60px 20px;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-list li::before {
    content: '✓';
    color: #fff;
    background: #8cc63f;
    border-radius: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Anniversary Section */
.anniversary-section {
    display: flex;
    background: linear-gradient(to right, #2563eb 0%, #3b82f6 50%, #fef3c7 50%, #fef3c7 100%);
    color: white;
}

.anniversary-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.anniversary-content h2 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-family: Georgia, serif;
    font-weight: normal;
}

.anniversary-content hr {
    width: 50px;
    border: 0;
    height: 2px;
    background: #fff;
    margin: 10px 0 20px 0;
}

.anniversary-content .lead {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.anniversary-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.9;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.anniversary-image {
    flex: 1;
    background-image: url('../img/anniversary_placeholder.jpg'); /* placeholder for their image */
    background-size: cover;
    background-position: center;
    background-color: #fef3c7;
}

/* Team */
.team-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.team-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-grid {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    text-align: center;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto 10px;
    border: 3px solid #8cc63f;
}

.view-all {
    grid-column: 1 / -1;
    text-align: center;
    display: block;
    margin-top: 40px;
    color: #2c4a3b;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .check-list {
        grid-template-columns: 1fr;
    }
    
    .anniversary-section {
        flex-direction: column;
        background: #2563eb;
    }
    
    .anniversary-image {
        min-height: 300px;
    }
    
    .team-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .btn {
        text-align: center;
    }
}