/* Resetting some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Albert Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Container for consistent spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
header {
    background-color: #D7CCB9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(215, 204, 185, 0.8), rgba(232, 220, 198, 0.8)), url('img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #331808;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #553319;
    margin-bottom: 30px;
}

/* Section Styling */
section {
    padding: 60px 0;
}

.about-section {
    background-color: #fff;
}

.services-section {
    background-color: #f8f8f8;
}

.pricing-section {
    background-color: #fff;
}

.map-section {
    background-color: #f8f8f8;
}

/* Map Styling */
#map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* Typography */
h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #331808;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #331808;
    margin-bottom: 15px;
}

.about-text, .pricing-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Logo Styling */
.logo img {
    height: 60px; /* Adjust the size as needed */
}

/* Button Styling */
.contact-button {
    background-color: #331808;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Albert Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(51, 24, 8, 0.2);
}

.contact-button:hover {
    background-color: #853915;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 24, 8, 0.3);
}

/* Back to Top Button Styling */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    background-color: #331808;
    color: white;
    border: none;
    padding: 15px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 24, 8, 0.2);
}

#backToTopBtn:hover {
    background-color: #853915;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(51, 24, 8, 0.3);
}

/* Google Maps Section Styling */
#map {
    padding: 20px;
    background-color: #D7CCB9; /* Primary background color */
}

#map iframe {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    border: 0;
}

/* Footer Styling */
footer {
    background-color: #D7CCB9;
    color: #331808;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 80px;
    /* Remove the filter that was making the logo invisible */
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column {
    max-width: 300px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #331808;
    border-bottom: 2px solid #853915;
    padding-bottom: 8px;
}

.footer-column p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    color: #553319;
}

.footer-column a {
    color: #331808;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #853915;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    header {
        padding: 10px 20px;
    }
    
    .logo img {
        height: 50px;
    }
}
