@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #2d7a2d;
    color: white;
}

.btn-primary:hover {
    background-color: #245a24;
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a2d;
    border: 2px solid #2d7a2d;
}

.btn-secondary:hover {
    background-color: #2d7a2d;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a4d1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header */
.header {
    background-color: #1a4d1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.logo img {
   
    height: 32px;
}
.faq-answer {
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #90ee90;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #90ee90;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* Fishing Types Section */
.fishing-types {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.fishing-types h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 50px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2d7a2d;
}

.type-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audience-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.audience-text p {
    margin-bottom: 20px;
    color: #666;
}

.audience-text ul {
    list-style: none;
    margin-left: 0;
}

.audience-text li {
    margin-bottom: 15px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.audience-text li::before {
    content: '•';
    color: #2d7a2d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.audience-text strong {
    color: #2d7a2d;
}

.audience-image img {
    width: 100%;
    border-radius: 8px;
}

/* Equipment Section */
.equipment {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.equipment h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 50px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.equipment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.equipment-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2d7a2d;
}

.equipment-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.gallery p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #1a4d1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-map img {
    width: 100%;
    border-radius: 8px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location h3 {
    color: #90ee90;
    margin-bottom: 10px;
    font-size: 18px;
}

.location p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #2d7a2d;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer-logo img {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #90ee90;
}

/* About Page Specific Styles */
.advantages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantages h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #2d7a2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d7a2d;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.seasonal-fishing {
    padding: 80px 0;
}

.seasonal-fishing h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.seasonal-fishing > p {
    color: #666;
    margin-bottom: 30px;
}

.seasonal-list {
    list-style: none;
}

.seasonal-list li {
    margin-bottom: 15px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.seasonal-list li::before {
    content: '•';
    color: #2d7a2d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.seasonal-list strong {
    color: #2d7a2d;
}

/* FAQ Page Styles */
.faq-hero {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.faq-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a2d;
}

.faq-list {
    padding: 80px 0;
}

.faq-item {
    background-color: #2d7a2d;
    color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #245a24;
}

.faq-question {
    font-weight: 600;
    font-size: 16px;
}

.faq-answer {
    margin-top: 15px;
    display: none;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Reviews Page Styles */
.reviews-hero {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.reviews-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a2d;
}

.reviews-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #2d7a2d;
    color: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    text-align: right;
    color: #90ee90;
}

/* Contact Page Styles */
.contact-hero {
    padding: 0;
    position: relative;
}

.contact-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details .location h3 {
    color: #2d7a2d;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-details .location p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a2d;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 120px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Policy and Terms Pages */
.policy-content,
.terms-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1,
.terms-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 30px;
}

.policy-content h2,
.terms-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2d7a2d;
    margin: 30px 0 15px;
}

.policy-content p,
.terms-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.policy-content ul,
.terms-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    color: #666;
}

.policy-content li,
.terms-content li {
    margin-bottom: 5px;
}

/* Additional responsive improvements */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .audience-content {
        gap: 40px;
    }
    
    .types-grid,
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .burger-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a4d1a;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Target Audience */
    .audience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Types and Equipment */
    .types-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    /* Cookie consent */
    .cookie-buttons {
        justify-content: center;
    }

    /* Contact page mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-hero img {
        height: 300px;
    }
    
    /* Reviews mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }
    
    /* Advantages mobile */
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .about-section,
    .fishing-types,
    .target-audience,
    .equipment,
    .gallery {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .about-text h2,
    .fishing-types h2,
    .audience-text h2,
    .equipment h2,
    .gallery h2 {
        font-size: 24px;
    }

    .types-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading animation */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover effects for better UX */
.type-card,
.equipment-card,
.review-card {
    transition: all 0.3s ease;
}

.type-card:hover,
.equipment-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #2d7a2d;
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    scroll-behavior: smooth;
}

/* Menu body lock */
.menu-open {
    overflow: hidden;
}

/* Form focus effects */
.form-group.focused label {
    color: #2d7a2d;
}

.form-group.focused input,
.form-group.focused textarea {
    border-color: #2d7a2d;
}

/* Lazy loading placeholder */
img.lazy {
    background-color: #f0f0f0;
    min-height: 200px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .burger-btn,
    .cookie-consent,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}