@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f7fbfa;
    color: #173b38;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 14px;
    z-index: 1000;
    width: min(1180px, 92%);
    margin: 14px auto 0;
    background: rgba(255,255,255,.96);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(15,70,65,.10);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: #dff3ed;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.logo strong {
    display: block;
    color: #073f3a;
    font-size: 18px;
}

.logo small {
    display: block;
    color: #78918e;
    font-size: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    color: #52706c;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #087d6f;
}

.nav-whatsapp {
    background: #087d6f;
    color: white !important;
    padding: 10px 16px;
    border-radius: 30px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: #e4f4ef;
    color: #087d6f;
    border-radius: 10px;
    padding: 9px 12px;
    cursor: pointer;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
    border: 1px solid transparent;
}

.btn-primary {
    background: #087d6f;
    color: white;
}

.btn-primary:hover {
    background: #056257;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #087d6f;
    color: #087d6f;
    background: white;
}

.btn-outline:hover {
    background: #e8f6f2;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: #087d6f;
}


/* HERO */

.hero {
    padding: 85px 0 75px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
}

.hero-tag,
.page-hero span,
.section-heading > span,
.small-title,
.cta-content > div > span {
    color: #087d6f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.hero h1 {
    margin: 18px 0;
    font-family: "Playfair Display", serif;
    color: #123c38;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
}

.hero h1 span {
    color: #087d6f;
}

.hero p {
    max-width: 570px;
    color: #687f7c;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin: 28px 0 20px;
}

.hero-location {
    color: #748b88;
    font-size: 13px;
}

.hero-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(10,75,68,.18);
}


/* SECTIONS */

.section {
    padding: 90px 0;
}

.light-section {
    background: #edf7f4;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    margin: 12px 0;
    color: #163f3b;
}

.section-heading p {
    color: #718682;
}


/* INFO */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15,70,65,.07);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card .icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: #e3f4ef;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 8px;
}

.info-card p {
    color: #718682;
}


/* ABOUT */

.about-preview,
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.about-image img {
    height: 430px;
    object-fit: cover;
    border-radius: 30px;
}

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    margin: 14px 0 20px;
}

.about-content p {
    color: #718682;
    margin-bottom: 15px;
}


/* FISH */

.fish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fish-grid-large {
    grid-template-columns: repeat(3, 1fr);
}

.fish-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,70,65,.07);
    transition: .3s;
}

.fish-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(15,70,65,.13);
}

.fish-image {
    overflow: hidden;
}

.fish-image img {
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

.fish-card:hover img {
    transform: scale(1.06);
}

.fish-card h3 {
    padding: 18px 20px 4px;
    font-size: 19px;
}

.fish-card p {
    padding: 0 20px;
    color: #758b88;
    font-size: 13px;
}

.fish-card > span {
    display: block;
    padding: 8px 20px 20px;
    color: #087d6f;
    font-size: 13px;
    font-weight: 700;
}

.center-btn {
    text-align: center;
    margin-top: 35px;
}


/* SERVICES */

.services-section {
    background: #f0f8f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.services-page-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    position: relative;
    background: white;
    padding: 34px;
    border-radius: 23px;
    box-shadow: 0 12px 35px rgba(15,70,65,.07);
}

.service-number {
    color: #b5dcd4;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 22px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #718682;
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    color: #087d6f;
    font-weight: 700;
}


/* PAGE HERO */

.page-hero {
    padding: 95px 0 85px;
    background: linear-gradient(135deg, #e8f6f2, #f7fbfa);
    text-align: center;
}

.page-hero h1 {
    margin: 12px 0;
    font-family: "Playfair Display", serif;
    color: #123c38;
    font-size: clamp(42px, 6vw, 65px);
}

.page-hero p {
    color: #708582;
}


/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15,70,65,.06);
}

.value-card > span {
    color: #087d6f;
    font-weight: 800;
}

.value-card h3 {
    margin: 12px 0 8px;
}

.value-card p {
    color: #718682;
}


/* FISH DETAIL */

.fish-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.fish-detail-image img {
    height: 480px;
    object-fit: cover;
    border-radius: 30px;
}

.fish-detail-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    margin: 12px 0;
}

.fish-detail-content > p {
    color: #718682;
    margin-bottom: 25px;
}

.detail-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #edf7f4;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.detail-box strong,
.detail-box span {
    display: block;
}

.detail-box span {
    color: #708582;
    font-size: 13px;
}


/* FARM */

.farm-main-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
}

.farm-content {
    max-width: 750px;
    margin: 50px auto 0;
    text-align: center;
}

.farm-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    margin: 10px 0;
}

.farm-content p {
    color: #718682;
}

.farm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.farm-gallery-card {
    overflow: hidden;
    border-radius: 20px;
}

.farm-gallery-card img {
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.farm-gallery-card:hover img {
    transform: scale(1.06);
}


/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
}

.gallery-item img {
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: start;
}

.contact-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.15;
    margin: 14px 0;
}

.contact-info > p {
    color: #718682;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: #e3f4ef;
    display: grid;
    place-items: center;
}

.contact-item p {
    color: #718682;
    font-size: 14px;
}

.contact-form-wrapper {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(15,70,65,.08);
}

.contact-form h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin: 15px 0 7px;
    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dce9e6;
    background: #f8fcfb;
    padding: 13px 15px;
    border-radius: 12px;
    outline: none;
    color: #244541;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #087d6f;
}

.full-btn {
    width: 100%;
    margin-top: 22px;
}

.contact-farm-image img {
    height: 420px;
    object-fit: cover;
    border-radius: 28px;
}


/* CTA */

.cta-section {
    background: #087d6f;
    color: white;
    padding: 65px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content > div > span {
    color: #bce4dc;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin: 8px 0;
}

.cta-content p {
    color: #d5eee9;
}


/* LEGAL */

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 35px;
    margin-bottom: 8px;
}

.legal-content p {
    color: #687f7c;
}


/* FOOTER */

.footer {
    background: #103d39;
    color: white;
    padding: 65px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 50px;
}

.footer h3 {
    margin-bottom: 12px;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer p {
    color: #b5cfcb;
    font-size: 14px;
}

.footer a {
    display: block;
    color: #b5cfcb;
    margin-bottom: 7px;
    font-size: 14px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    width: min(1180px, 92%);
    margin: 45px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    margin: 0;
}


/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    background: #19a974;
    color: white;
    padding: 13px 18px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


/* ANIMATIONS */

.hero-content {
    animation: fadeUp .8s ease both;
}

.hero-image {
    animation: fadeIn .9s ease both;
}

.info-card,
.fish-card,
.service-card,
.value-card {
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}