/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFDF9;
    color: #432818;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #99582a;
}

/* Hero Header Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('googleshop.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffe6a7;
    color: #432818;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f7d7a9;
}

/* About Section */
#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid #f0e6d6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #99582a;
    border-bottom: 2px solid #ffe6a7;
    padding-bottom: 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.contact-info a {
    color: #99582a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.yelp-logo {
    width: 150px;
    margin-top: 20px;
}

.map iframe {
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #432818;
    color: #FFFDF9;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}