/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    line-height: 29px;
    color: #4b4f58;
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #282828;
}
a { color: #1665f6; text-decoration: none; }
a:hover { color: #24b24c; }
img { max-width: 100%; height: auto; }

/* Container */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAV */
.main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(19, 28, 80, 0.92);
    min-height: 59px;
}
.nav-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
}
.logo { margin-right: 30px; }
.logo img { height: 140px; margin-top: -40px; margin-bottom: -40px; }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-left: auto;
}
.nav-menu li a {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 4px;
    transition: background 0.2s;
}
.nav-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.lang-switch-mobile { display: none; }
.lang-switch {
    margin-left: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.lang-switch a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lang-switch a:hover { opacity: 1; color: #fff; }
.lang-switch img { vertical-align: middle; }

.menu-toggle {
    display: none;
    background: #131c50;
    border: none;
    border-radius: 4px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.14);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 26px;
    padding: 18px 10px 17px;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}
.menu-toggle i { margin-right: 10px; }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}
.hero-slogan {
    color: #fff;
    font-size: 50px;
    line-height: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-btn {
    display: inline-block;
    background: #24b24c;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 50px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.hero-btn:hover { background: #1e9640; color: #fff; }

/* SECTIONS */
.section {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #282828;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #24b24c;
    margin: 12px auto 0;
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-text p { margin-bottom: 10px; }

.divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    max-width: 1170px;
    margin: 0 auto;
}

/* FISH SEARCH */
.fish-search {
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
}
.fish-search input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eef0f2;
    border-radius: 30px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #4b4f58;
    outline: none;
    transition: border-color 0.3s;
}
.fish-search input:focus {
    border-color: #24b24c;
}
.fish-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    display: none;
}
.fish-search-clear:hover {
    color: #333;
}

/* FISH GRID */
.fish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.fish-card {
    background: #f4f5f7;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border: 1px solid #d8dbe0;
    display: flex;
    flex-direction: column;
}
.fish-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.fish-card-img {
    position: relative;
    height: 220px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.fish-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.fish-card:hover .fish-card-img img {
    transform: scale(1.08);
}
.fish-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 28, 80, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fish-card-overlay i {
    color: #fff;
    font-size: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.fish-card:hover .fish-card-overlay {
    opacity: 1;
}
.fish-card-body {
    padding: 18px 20px 20px;
    background: #f4f5f7;
    flex: 1;
}
.fish-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #282828;
    margin-bottom: 10px;
    min-height: 46px;
    display: flex;
    align-items: flex-start;
}
.fish-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fish-card-meta span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.contact-info p {
    margin-bottom: 10px;
    line-height: 1.7;
}
.contact-info a { color: #24b24c; }

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #24b24c;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-form button {
    background: #24b24c;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover { background: #1e9640; }

.form-status {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    display: none;
    align-items: center;
    gap: 8px;
    animation: fadeSlideIn 0.3s ease;
}
.form-status.success {
    display: flex;
    color: #1a7a34;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
}
.form-status.error {
    display: flex;
    color: #c62828;
    background: #ffebee;
    border: 1px solid #ef9a9a;
}
.form-status::before {
    font-family: 'FontAwesome';
    font-size: 18px;
}
.form-status.success::before { content: '\f058'; }
.form-status.error::before { content: '\f057'; }
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MAP */
.map-container {
    margin-top: -30px;
    line-height: 0;
}
.map-container iframe {
    display: block;
}
.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: #e8eaed;
    text-align: center;
}
.map-placeholder-inner .fa-map-marker {
    font-size: 48px;
    color: #131c50;
    margin-bottom: 12px;
}
.map-placeholder-inner p {
    font-size: 18px;
    font-weight: 600;
    color: #4b4f58;
    margin-bottom: 16px;
    line-height: 1.4;
}
.map-placeholder-inner button {
    background: #131c50;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.map-placeholder-inner button:hover {
    background: #24b24c;
}

/* COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e232d;
    color: #d2d2de;
    z-index: 10000;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-consent-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-consent-inner p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 250px;
}
.cookie-consent-inner a {
    color: #24b24c;
    text-decoration: underline;
}
.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.cookie-btn:hover {
    transform: translateY(-1px);
}
.cookie-btn-accept {
    background: #24b24c;
    color: #fff;
}
.cookie-btn-accept:hover {
    background: #1e9a40;
}
.cookie-btn-decline {
    background: #4b5563;
    color: #fff;
}
.cookie-btn-decline:hover {
    background: #6b7280;
}

/* FOOTER */
.site-footer {
    background: #1e232d;
    color: #d2d2de;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

/* SCROLL TOP */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #131c50;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 999;
}
.scroll-top:hover { background: #24b24c; }

/* RESPONSIVE */

/* Tablets and small desktops */
@media (max-width: 991px) {
    .main-nav {
        top: 0;
        background: none;
        min-height: auto;
    }
    .nav-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 0;
        justify-content: center;
        max-width: 440px;
    }
    .logo { margin-right: 0; text-align: center; width: 100%; }
    .logo img { height: 150px; margin: 15px 0 20px; }
    .lang-switch {
        display: none;
    }
    .nav-menu .lang-switch-mobile {
        display: flex;
        gap: 15px;
        padding: 12px 29px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 5px;
        justify-content: center;
    }
    .nav-menu .lang-switch-mobile a {
        padding: 0;
        color: #fff;
        opacity: 0.8;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }
    .nav-menu .lang-switch-mobile a:hover {
        opacity: 1;
        background: none;
    }
    .nav-menu .lang-switch-mobile img {
        vertical-align: middle;
    }
    .menu-toggle {
        display: block;
        order: 2;
        text-align: center;
        width: 100%;
        margin-top: 0;
    }
    .nav-menu {
        display: none;
        width: 100%;
        order: 3;
        background: #131c50;
        flex-direction: column;
        padding: 16px 0;
        border-radius: 0 0 4px 4px;
        overflow: hidden;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li a {
        display: block;
        padding: 9px 29px;
        font-size: 16px;
        font-weight: 800;
        text-align: center;
    }
    .nav-menu li a:hover {
        background: #0d1438;
        color: #0089e8;
    }
    .hero {
        min-height: 100vh;
    }
    .hero-slogan { font-size: 38px; line-height: 44px; }
    .hero-btn { text-transform: none; }
    .section { padding: 40px 0; }
    .section-title { font-size: 24px; margin-bottom: 30px; }
    .fish-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Landscape phones */
@media (max-width: 768px) {
    .nav-inner { max-width: 440px; }
    .hero-slogan { font-size: 36px; line-height: 42px; }
    .hero-btn { padding: 12px 36px; font-size: 14px; }
    .fish-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fish-card-img { height: 180px; }
    .fish-card-body h3 { font-size: 15px; min-height: 40px; }
    .contact-info h3 { font-size: 20px; }
}

/* Portrait phones */
@media (max-width: 480px) {
    .nav-inner { max-width: 290px; }
    .logo img { height: 100px; margin: 10px 0 12px; }
    .menu-toggle { padding: 12px 16px; font-size: 14px; }
    .hero { min-height: 100vh; }
    .hero-content { padding-top: 60px; }
    .hero-slogan { font-size: 26px; line-height: 32px; margin-bottom: 20px; }
    .hero-btn { padding: 11px 30px; font-size: 13px; }
    .section { padding: 30px 0; }
    .section-title { font-size: 22px; margin-bottom: 25px; }
    .fish-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .fish-card-img { height: 150px; }
    .fish-card-body { padding: 14px 16px 16px; }
    .fish-card-body h3 { font-size: 14px; min-height: auto; margin-bottom: 8px; }
    .fish-card-meta span { font-size: 12px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form input,
    .contact-form textarea { padding: 10px 14px; font-size: 15px; }
    .contact-form button { width: 100%; padding: 13px; }
    .map-container { margin-top: -15px; }
    .map-container iframe { height: 300px; }
    .map-placeholder { height: 300px; }
    .scroll-top { display: none !important; }
    .cookie-consent-inner { flex-direction: column; text-align: center; gap: 14px; }
    .cookie-consent-inner p { min-width: auto; }
}
