/* Global Styles */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Sub-navigation */
.sub-nav {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.sub-nav .container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sub-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.sub-nav a:hover, .sub-nav a.active {
    background: var(--primary-color);
    color: white;
}

/* FAQ Page */
.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Calendar Page */
.calendar-table {
    width: 100%;
    margin-top: 50px;
    border-collapse: collapse;
    text-align: left;
}
.calendar-table th, .calendar-table td {
    padding: 15px;
    border: 1px solid #ddd;
}
.calendar-table th {
    background-color: var(--primary-color);
    color: white;
}
.calendar-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: slideDown 0.8s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

.hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--bg-light);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.services h2,
.products h2,
.ambassador h2,
.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    color: #555;
}

.service-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Products Section */
.products {
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 20px 20px 10px;
    color: var(--text-dark);
}

.product-card .price {
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.product-card p {
    padding: 0 20px 15px;
    color: #666;
    font-size: 14px;
}

.product-card button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Ambassador Section */
.ambassador {
    padding: 80px 20px;
    background: var(--bg-light);
}

.ambassador-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ambassador-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.ambassador-list {
    list-style: none;
    margin: 20px 0;
}

.ambassador-list li {
    padding: 12px 0;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

.ambassador-list strong {
    color: var(--primary-color);
}

.placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

/* Seasonality Section Specific Styles */
.seasonality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0; /* Add some vertical padding */
}

.seasonality-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left; /* Align text left within the item */
}

.seasonality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.seasonality-item h3 {
    font-size: 24px;
    color: var(--text-dark); /* Use text-dark for consistency */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.seasonality-item .seasonality-icon {
    font-size: 32px;
    margin-right: 15px;
    color: var(--primary-color);
}

.seasonality-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.seasonality-item .status-indicator {
    width: 18px; /* Slightly smaller */
    height: 18px; /* Slightly smaller */
    margin-right: 10px;
    flex-shrink: 0; /* Prevent indicator from shrinking */
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
}

.status-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.in-season {
    background-color: #27ae60; /* Green */
}

.limited-stock {
    background-color: #f39c12; /* Orange */
}

.out-of-season {
    background-color: #c0392b; /* Red */
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 40px;
}

.info-item h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.gallery-item-caption {
    padding: 15px;
    background-color: white;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card .customer-info {
    font-weight: bold;
    color: var(--primary-color);
}
.testimonial-card .customer-role {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li,
.footer-section a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 101;
    }

    .nav-menu {
        display: none; /* Hidden by default */
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 62, 80, 0.95); /* Dark, semi-transparent background */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.5s ease;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex; /* Shown when active */
    }

    .nav-menu a {
        color: white;
        font-size: 24px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .services h2,
    .products h2,
    .ambassador h2,
    .contact h2 {
        font-size: 28px;
    }

    .ambassador-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .placeholder-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero {
        padding: 60px 20px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- */
/* Single Product Page */
/* ------------------------- */

.product-page-main {
    background: var(--bg-light);
    padding: 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery .main-product-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.product-gallery .thumbnail-images {
    display: flex;
    gap: 15px;
}

.product-gallery .thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery .thumbnail.active,
.product-gallery .thumbnail:hover {
    border-color: var(--primary-color);
}

.product-details h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-details .price-and-stock {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-details .price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.product-details .stock-level {
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
}

.stock-level.in-stock { background-color: var(--secondary-color); }
.stock-level.low-stock { background-color: #f39c12; }
.stock-level.out-of-stock { background-color: #c0392b; }

.product-details .product-short-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.product-details h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.product-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.product-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.product-details ul i {
    color: var(--primary-color);
}

.product-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.related-products-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-details h1 {
        font-size: 28px;
    }
    .product-cta-buttons {
        flex-direction: column;
    }
}

/* ------------------------- */
/* Tip Page */
/* ------------------------- */

.tip-layout {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tip-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tip-content .tip-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.tip-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.tip-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
