/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #fff;
}

header .logo {
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 230px;
    width: auto;
}

header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
}

header nav a:hover {
    text-decoration: underline;
}

/* Main content styling */
.content-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 10px;
}

/* About section styling */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

/* Storefront image with hover effect */
.storefront-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.storefront-image:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

/* Product gallery styling */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.1);
}

/* Business hours styling in contact section */
#hours ul {
    list-style: none;
    margin-top: 10px;
}

#hours li {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Contact section styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

/* Map container styling */
.map-container {
    flex: 1;
    max-width: 400px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.contact-text {
    flex: 1;
}

/* Business hours table styling */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.hours-table td:first-child {
    font-weight: bold;
    text-align: left;
}

.hours-table td:last-child {
    text-align: right;
}

/* Responsive adjustment for About and Contact sections */
@media (max-width: 768px) {
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    .storefront-image,
    .map-container {
        width: 100%;
    }
}

/* Footer styling */
footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #bbb;
}


