body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: #f4b400;
}

#menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

#menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

main {
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.home-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 2em;
    object-fit: cover;
    object-position: bottom;
}

section {
    padding: 4em 0;
    border-bottom: 1px solid #ddd;
}

section h1 {
    font-size: 2em;
    margin-bottom: 1em;
}

.store {
    background: #fff;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: calc(0.2s * var(--i));
}

.store:nth-child(1) {
    --i: 1;
}

.store:nth-child(2) {
    --i: 2;
}

.store:nth-child(3) {
    --i: 3;
}

.store:nth-child(4) {
    --i: 4;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.store-info {
    font-size: 1.1em;
    line-height: 1.6;
}

.store-info p {
    margin: 0.5em 0;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.5em;
    color: #333;
}

.contact-form label {
    display: block;
    margin-top: 1em;
    font-weight: bold;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    margin-top: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 1em;
    background: #f4b400;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-top: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #e0a800;
}

.contact-form p {
    text-align: center;
    margin-top: 1em;
    font-size: 1em;
    color: #28a745;
}

.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.instagram-post {
    background: #fff;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 2em);
    box-sizing: border-box;
}

.instagram-post img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.instagram-post img:hover {
    transform: scale(1.05);
}

.instagram-post p {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
    position: relative;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        z-index: 1000;
        text-align: center;
        padding: 1em 0;
    }

    nav ul li {
        display: block;
        width: 100%;
        padding: 1em 0;
    }

    nav ul li a {
        padding: 1em;
        display: block;
    }

    nav ul li a:hover {
        background: #444;
    }

    #menu-icon {
        display: flex;
    }

    #menu-icon.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    #menu-icon.active .bar:nth-child(2) {
        opacity: 0;
    }

    #menu-icon.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .instagram-post {
        width: calc(50% - 2em);
    }

    .home-image {
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 768px) {
    .home-image {
        height: 400px;
        object-fit: cover;
        object-position: bottom;
    }
}

@media (max-width: 480px) {
    .instagram-post {
        width: 100%;
    }
}