/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

.banner-header {
    background-color: #000;
    text-align: center;
    padding: 1rem 0;
}

.banner-logo {
    width: 100%;
    max-width: 300px;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

nav {
    margin-top: 0.5rem;
}

nav a {
    margin: 0 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.hero {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f7f7f7, #e0e0e0);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 2rem auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: #006400;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #004d00;
}

.products {
    padding: 3rem 1rem;
    background-color: #fff;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    background-color: #f7f7f7;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
}

.product-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.product-item p {
    font-size: 1rem;
    color: #555;
}

.reviews {
    padding: 3rem 1rem;
    background-color: #f7f7f7;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
}

.review-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.review-item .rating {
    color: #ff9900;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.review-item p {
    font-size: 1rem;
    color: #555;
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.animate:nth-child(1) { animation-delay: 0.2s; }
.animate:nth-child(2) { animation-delay: 0.4s; }
.animate:nth-child(3) { animation-delay: 0.6s; }
.animate:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background-color: #fff;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.highlight h2 {
    margin-bottom: 1rem;
    color: #444;
}

.highlight ul {
    list-style: disc;
    text-align: left;
    margin: 0 auto 1rem;
    max-width: 500px;
    padding-left: 1.2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #e0e0e0;
    font-size: 0.9rem;
    color: #555;
}

footer a {
    color: #00ccff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #006400;
}

.contact-section {
    max-width: 700px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.contact-info a {
    color: #006400;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #006400;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #004d00;
}

.quick-buttons {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-buttons a {
    background-color: #006400;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.quick-buttons a:hover {
    background-color: #004d00;
}

.storefront-photo {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-embed {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-section {
    max-width: 1000px;
    margin: 2rem auto;
    text-align: center;
    padding: 1rem;
}

.gallery-carousel {
    position: relative;
    margin-top: 2rem;
}

.gallery-carousel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swiper-button-prev,
.swiper-button-next {
    color: #006400;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background-color: #006400;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* PhotoSwipe styles */
.pswp__button--close {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.pswp__button--close:hover {
    background-color: #006400;
}

.pswp__bg {
    cursor: pointer;
}