/* Base Styles */
:root {
    --primary-color: #f5f1e8; /* Soft cream background */
    --accent-color: #8a785d; /* Warm taupe */
    --secondary-accent: #a8ba9f; /* Sage green */
    --text-color: #463b2a; /* Dark brown text */
    --light-text: #ffffff; /* White text remains */
    --card-bg: #ffffff; /* Card background remains white */
    --hover-accent: #a89c83; /* Lighter taupe for hover */
    --footer-link: #e8d8c0; /* Light sandy color */
    --header-bg: #5e4c36; /* Deeper brown */
}

/* Font import for Dancing Script - replacing Gabriola */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Full-width container for hero section */
.hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../images/LandingPageBanner.png') no-repeat center top;
    background-size: cover;
    width: 100vw;
    height: 0;
    padding-bottom: 33.33%; /* 3:1 aspect ratio (100% / 3) */
    color: var(--light-text);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    left: 0;
    right: 0;
}

/* Removing the overlay filter */
.hero::before {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
}

.hero-content {
    width: 100%;
    margin: 0;
    padding: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
}

.hero h1 {
    font-size: clamp(2rem, 5vw + 1rem, 7.8rem);
    margin-bottom: 1rem;
    color: var(--header-bg); /* Deeper brown */
    padding-left: 15px;
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color); /* Dark brown text */
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.cta-button {
    background-color: var(--accent-color); /* Warm taupe */
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: var(--hover-accent); /* Lighter taupe */
    transform: translateY(-2px);
}

.circle-accent {
    position: absolute;
    right: 15%;
    top: 30%;
    width: 100px;
    height: 100px;
    background-color: var(--secondary-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.slider-nav {
    position: absolute;
    bottom: 10%;
    right: 5%;
    display: flex;
}

.slider-nav button {
    background-color: rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
}

.slider-nav button:hover {
    background-color: var(--accent-color);
}

/* Large Card Section */
.large-card-section {
    padding: 0.75rem 0;
    background-color: var(--primary-color); /* Soft cream background */
}

.large-card {
    border-radius: 15px;
    overflow: hidden;
}

.card-content {
    display: flex;
    flex-direction: row;
}

.card-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Special styling for "Our Mission" heading */
.mission-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: var(--header-bg); /* Deeper brown */
}

/* Apply Dancing Script font to service cards and info circles headings */
.service-card h3,
.info-circle h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: var(--header-bg); /* Deeper brown */
    text-align: center;
}

.card-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-color);
}

.card-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    align-self: flex-start;
    text-decoration: none;
}

.card-button:hover {
    background-color: var(--hover-accent);
    transform: translateY(-2px);
}

.card-image {
    flex: 1;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.card-image img {
    max-width: 100%;
    max-height: 375px;
    object-fit: contain;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Media queries for large card section */
@media (max-width: 992px) {
    .card-content {
        flex-direction: column-reverse;
    }
    
    .card-image {
        min-height: 310px;
    }
    
    .card-text {
        padding: 2rem;
    }
    
    .card-text h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 1rem 0 3rem 0;
    text-align: center;
    background-color: var(--primary-color); /* Soft cream background */
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg); /* White background preserved as requested */
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(106,141,115,0.2); /* Sage green shadow */
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

.service-card p {
    padding: 0 0 1.5rem;
    color: var(--text-color);
    flex-grow: 1;
    text-align: center;
}

.service-card .download-button {
    background-color: var(--secondary-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.service-card .download-button:hover {
    background-color: #8ca980; /* Darker sage green */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106,141,115,0.3);
}

.service-card .download-button i {
    font-size: 1.1rem;
}

/* Info Section */
.info-section {
    padding: 1rem 0 3rem 0;
    text-align: center;
    background-color: var(--primary-color); /* Soft cream background */
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--header-bg); /* Deeper brown */
}

.info-circles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-circle {
    background-color: var(--secondary-accent); /* Sage green */
    width: 365px; /* Increased from 365px by 10% */
    height: 365px; /* Increased from 365px by 10% */
    border-radius: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-circle:nth-child(odd) {
    background-color: var(--accent-color); /* Warm taupe */
}

.info-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.info-circle h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem !important; /* Directly set a large font size with !important */
    color: #ffefc4; /* Complementary to sage green (default background) */
}

.info-circle:nth-child(odd) h3 {
    color: #d3ecd9; /* Complementary to warm taupe (odd-numbered circles) */
}

.info-circle p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.circle-button {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.circle-button:hover {
    background-color: var(--light-text);
    color: var(--secondary-accent); /* Sage green */
    text-decoration: none;
}

.info-circle:nth-child(odd) .circle-button:hover {
    color: var(--accent-color); /* Warm taupe */
}

/* Footer */
footer {
    background-color: var(--header-bg); /* Deeper brown */
    padding: 2rem 0;
    border-top: 4px solid var(--accent-color); /* Warm taupe */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-icon {
    color: var(--footer-link); /* Light sandy color */
    font-size: 2rem;
    transition: color 0.3s ease;
}

.youtube-icon:hover {
    color: #c83c23; /* Earthy red color instead of bright YouTube red */
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero {
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
        background-size: cover;
    }
}

@media (max-width: 1199px) and (min-width: 993px) {
    .hero {
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
        background-size: cover;
    }
}

@media (max-width: 992px) {
    .circle-accent {
        width: 80px;
        height: 80px;
        right: 10%;
    }
    
    .info-circles {
        justify-content: center;
    }
    
    .info-circle {
        width: 329px; /* Increased from 299px by 10% */
        height: 329px; /* Increased from 299px by 10% */
        padding: 1.5rem;
    }
    
    .hero {
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
        background-size: cover;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: center top;
        background-size: cover;
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .circle-accent {
        top: 15%;
        right: 5%;
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .hero {
        background-position: center top;
        background-size: cover;
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .info-circle {
        width: 274px; /* Increased from 249px by 10% */
        height: 274px; /* Increased from 249px by 10% */
        padding: 1rem;
    }
    
    .info-circle h3 {
        font-size: 1rem;
    }
    
    .info-circle p {
        font-size: 0.8rem;
    }
}

/* Add a new media query for very narrow screens */
@media (max-width: 400px) {
    .hero {
        background-size: cover;
        background-position: center top;
        padding-bottom: 33.33%; /* Maintain 3:1 aspect ratio */
    }
} 