:root{
    --primary:#1d4d3c;
    --secondary:#d7f3df;
    --accent:#f2b94b;
    --dark:#173127;
    --light:#ffffff;
    --bg:#f6faf7;
    --text:#2f2f2f;
}

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

body{
    font-family:'Montserrat',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

/* REMOVE BLUE LINKS */

a{
    color:inherit;
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

header{
    position: relative;
    text-align: center;
    padding: 45px 20px;

    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/header-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 0 0 28px 28px; /* rounded bottom corners */

    overflow: hidden; /* ensures image follows rounded corners */

    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.8rem,6vw,5rem);
    font-weight:800;
    letter-spacing:8px;
    color:#ffffff;
    text-transform:uppercase;
    display:inline-block;
    transition:0.3s ease;

    text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 4px 20px rgba(0,0,0,0.35);
}

.logo:hover{
    transform:scale(1.03);
    color:#ffd56a;
}

.tagline{
    margin-top:12px;
    font-size:1.1rem;
    color:#f3f3f3;
    letter-spacing:3px;
    font-weight:600;

    text-shadow:
    0 2px 8px rgba(0,0,0,0.5);
}

/* HERO */

.hero{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

    margin:30px 20px 0;

    border-radius:24px;

    box-shadow:
    0 6px 20px rgba(0,0,0,0.10);
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.50);
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:#fff;

    width:90%;
    max-width:900px;

    padding:40px 50px;

    background:rgba(0,0,0,0.48);

    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);

    border-radius:24px;

    box-shadow:
    0 6px 20px rgba(0,0,0,0.12);

    border:
    1px solid rgba(255,255,255,0.10);
}

.hero-content h1{
    font-size:clamp(2rem,4vw,4rem);
    font-weight:700;
    line-height:1.2;

    letter-spacing:-1px;

    margin-bottom:24px;

    max-width:850px;

    margin-left:auto;
    margin-right:auto;

    text-shadow:
    0 2px 6px rgba(0,0,0,0.30);

    padding:0 10px;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.9;
}

/* HERO CTA BUTTONS */

.hero-cta{
    display:flex;
    gap:18px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:28px;
}

/* BUTTON BASE */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:all 0.35s ease;
    letter-spacing:0.3px;
    min-width:260px;
    box-shadow:0 8px 24px rgba(0,0,0,0.18);
}

/* CALL BUTTON */

.call-btn{
    background:#ffb703;
    color:#111;
}

.call-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(255,183,3,0.35);
    background:#ffc933;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(37,211,102,0.35);
    background:#2ee071;
}

/* PICNIC CTA */

.picnic-cta{
    margin-top:35px;
    text-align:center;
}

.picnic-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:16px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.3px;
    transition:all 0.35s ease;
    box-shadow:0 10px 28px rgba(37,211,102,0.28);
}

.picnic-btn:hover{
    transform:translateY(-4px) scale(1.02);
    background:#2ee071;
    box-shadow:0 18px 40px rgba(37,211,102,0.38);
}

.picnic-btn-highlight {
    background: #ffb703;
    color: #111;
    border: 2px solid #fb8500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.picnic-btn-highlight:hover {
    background: #fb8500;
    color: #fff;
    transform: translateY(-2px);
}
/* SECTION */

.section{
    padding:80px 0;
}

.section-bg{
    background:#eef7f1;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:clamp(2rem,4vw,3rem);
    color:var(--primary);
    margin-bottom:15px;
}

.section-title p{
    max-width:850px;
    margin:auto;
}

/* GRID */

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

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

.card img{
    width:100%;
    display:block;
    aspect-ratio:3/2;
    object-fit:cover;
}

.agro-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:18px 18px 0 0;
}

.card-content{
    padding:25px;
    text-align:center;
}

.card-content h3{
    margin-bottom:12px;
    color:var(--dark);
    text-align:center;
}

.card-content p{
    margin-bottom:20px;
    color:#555;
    text-align:center;
}

/* BUTTON */

.btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
    margin:auto;
    text-align:center;
}

.btn:hover{
    background:var(--accent);
    color:#222;
}

/* HIGHLIGHT */

.highlight-box{
    background:linear-gradient(135deg,#1d4d3c,#2d7057);
    color:#fff;
    padding:35px;
    border-radius:20px;
    margin-top:50px;
    text-align:center;
}

/* RESORT */

.resort{
    background:linear-gradient(to right,#d7f3df,#eef9f2);
}

.resort-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    align-items:center;
}

.resort-image{
    overflow:hidden;
    border-radius:24px;
}

.resort-image img{
    width:100%;
    display:block;
    border-radius:24px;
    object-fit:cover;
}

.resort-text{
    text-align:center;
}

.resort-text h2{
    font-size:3rem;
    margin-bottom:20px;
    color:var(--primary);
    text-align:center;
}

.resort-text p{
    margin-bottom:20px;
    text-align:center;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2,
.section-title p{
    text-align:center;
}

.seo-content-section{
    padding-top:40px;
}

.seo-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.seo-content p{
    margin-bottom:22px;
    line-height:1.9;
    color:#555;
    font-size:1.05rem;
}

/* GLOBAL LINKS */

a{
    text-decoration:none;
    transition:0.3s ease;
}

/* BUTTONS & MAIN LINKS */

.card-content a,
.seo-content a,
.footer-links a{
    font-weight:600;
    letter-spacing:0.2px;
}

/* INLINE INTERNAL LINKS */

.inline-link{
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding-bottom: 1px;
    transition: all 0.25s ease;
}

/* GENERAL LINK HOVER */

a{
    transition: all 0.25s ease;
}

a:hover{
    opacity: 0.92;
}

/* PREMIUM INLINE LINK HOVER */

.inline-link:hover{
    border-bottom-color: rgba(255,255,255,0.45);
    opacity: 1;
}

/* FOOTER LINKS */

.footer-links a{
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.footer-links a:hover{
    border-bottom-color: rgba(255,255,255,0.35);
    opacity: 1;
}

/* FOOTER */

footer{
    background:#10251d;
    color:#fff;
    padding:50px 20px;
    text-align:center;
}

footer h3{
    margin-bottom:15px;
    font-size:2rem;
}

footer p{
    color:#c6d8cf;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
         min-height:500px;
    }

    .section{
        padding:60px 0;
    }

    .resort-text h2{
        font-size:2.2rem;
    }
	
	.hero-content{
        padding:28px 22px;
        border-radius:18px;
    }
	
	.hero-cta{
        flex-direction:column;
    }

    .cta-btn{
        width:100%;
        max-width:340px;
    }

}
}
