:root {
    --primary-color: #e53935;
    --secondary-color: #4caf50;
    --accent-color: #ffd3d1;
    --text-color: #333;
    --light-color: #fff;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fafafa;
}

/* Navigation */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;;
    background: none;
    border: none;
    font-size: 1.5rem;
    z-index: 10;
}

/* Hero Section */
.hero {
    background-image: url('pictures/eperSatorHatter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.0);
    background-blend-mode: lighten;
    color: var(--light-color);
    text-align: center;
    padding: 8rem 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.cta-button:hover {
    background-color: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.cta-secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}

/* Main Content Sections */

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Strawberry Types Section */
.strawberry-types {
    background-color: var(--accent-color);
    padding: 4rem 1rem;
}

.types-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.type-card {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.type-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.type-info p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.type-info {
    padding: 1.5rem;
}

.type-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.types-group {
    margin-bottom: 3rem;
}

.types-container {
    gap: 1.5rem;
    justify-content: center;
}

.subsection-title {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.subsection-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subsection-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Market Schedule Section */
.schedule-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
}

.schedule-table th, .schedule-table td {
    padding: 1.4rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-size: 1.3rem;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover {
    background-color: #f9f9f9;
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-color);
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    opacity: 0.4;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-author .city {
    font-weight: normal;
    color: #777;
    font-size: 0.9rem;
}

/* Seasonal Calendar */
.seasonal-container {
    max-width: 100%;
    overflow-x: auto;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.seasonal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.seasonal-table th, .seasonal-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.seasonal-table th {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.seasonal-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

.seasonal-table .available {
    background-color: var(--accent-color);
    position: relative;
}

.seasonal-table .available::after {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

/* Location Section */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-info ul {
    list-style: none;
}

.location-info li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.location-info li strong {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

#location-info-important{
    color: red;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4rem;
}

.gallery-item {
    height: 270px;
    width: 270px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--light-color);
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-info h3, .footer-links h3, .footer-contact h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #218838;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
        margin-left: 0;
    }
    
    .hamburger {
        display: block;
        background-color: var(--secondary-color);
        color: var(--light-color);
        visibility: visible;
        position: absolute;
        top: 2rem;
        right: 1rem;
        transform: translateY(-50%);
    }

    .logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        flex: 0 0 auto;
    }

    .logo h1 {
        text-align: center;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }

    .schedule-container {
        max-width: 95%;
        padding: 0.5rem;
    }
    
    .schedule-table {
        font-size: 0.9rem; 
    }

    .schedule-table th, .schedule-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
        word-wrap: break-word;
        max-width: 100px;
    }
    
    .schedule-table th {
        font-size: 1rem;
    }

    .gallery-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        margin: 0 auto;
    }

    .glass-container {
        padding: 1.5rem;
        width: 90%;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .testimonial-card {
        width: 100%;
    }
    
    .seasonal-container {
        max-width: 95%;
        padding: 0.5rem;
    }
    
    .seasonal-table th, .seasonal-table td {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
}