:root {
    --primary-color: #262626;
    --accent-color: #2fcc71;
    --light-gray: #e9ecef;
    --white-color: #ffffff;
    --text-color: #555;
}

/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background: var(--white-color);
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

header .logo {
    width: 350px;
    margin-bottom: 1rem;
}

header p {
    margin: 0;
    font-size: 1.2rem;
    color: #777;
}

/* Hero Section Styles */
#hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519794206461-cccd885bf209?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    color: var(--white-color);
    padding: 8rem 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
}

/* General Section Styles */
section {
    padding: 2rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}


/* Services Section Styles */
#services {
    background-color: var(--light-gray);
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-box {
    background: var(--white-color);
    border: 1px solid #eee;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* About Us Section Styles */
#about {
    background: var(--white-color);
}

#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Gallery Section Styles */
#gallery {
    background-color: var(--light-gray);
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-images img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Testimonials Section Styles */
#testimonials {
    background: var(--white-color);
}

.testimonial {
    background: var(--white-color);
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    margin: 0 auto;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial cite {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white-color);
    border: 1px solid #eee;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.star-rating {
    color: #f8ce0b; /* Gold color for stars */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
    flex-grow: 1;
}

.testimonial-card cite {
    font-weight: bold;
    color: var(--primary-color);
    align-self: flex-end;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #28b463; /* Darker green */
}

/* Google Reviews Section Styles */
#google-reviews {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 3rem 0;
}

#google-reviews h2 {
    color: var(--white-color);
}

#google-reviews p {
    margin-bottom: 1.5rem;
}

/* Contact Section Styles */
#contact {
    background: var(--light-gray);
    text-align: center;
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Container for centering content */
.container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        padding: 1.5rem;
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    header .logo {
        width: 250px;
    }
} 