/*======================================
JJ GARDENS
Kiryowa â€¢ Njeru â€¢ Jinja
Luxury Resort Theme
=======================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#041b14;

color:#fff;

overflow-x:hidden;

}

/*=========================
COLORS
=========================*/

:root{

--green:#0b4f3a;

--darkgreen:#06271d;

--gold:#d4af37;

--copper:#b87333;

--white:#ffffff;

--light:#f5f5f5;

}

/*=========================
TOP BAR
=========================*/

.topbar{

background:#02130d;

color:var(--gold);

padding:10px 8%;

display:flex;

justify-content:space-between;

align-items:center;

font-size:14px;

}

.topbar i{

margin-right:6px;

}

/*=========================
NAVBAR
=========================*/

nav{

background:rgba(11,79,58,.95);

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

position:sticky;

top:0;

z-index:999;

backdrop-filter:blur(10px);

}

.logo h1{

font-family:'Cinzel',serif;

font-size:42px;

color:var(--gold);

}

.logo p{

font-size:14px;

letter-spacing:2px;

color:white;

}

nav ul{

display:flex;

list-style:none;

}

nav ul li{

margin-left:30px;

}

nav ul li a{

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

nav ul li a:hover{

color:var(--gold);

}

.book-btn{

background:linear-gradient(45deg,var(--copper),var(--gold));

padding:14px 30px;

border-radius:8px;

text-decoration:none;

color:white;

font-weight:bold;

transition:.3s;

}

.book-btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 20px rgba(0,0,0,.3);

}

/*=========================
HERO
=========================*/

.hero{

height:100vh;

background:

linear-gradient(

rgba(0,0,0,.45),

rgba(0,0,0,.45)

),

url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=80");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

padding:0 8%;

}

.overlay{

max-width:700px;

animation:fadeIn 1.5s;

}

.overlay h4{

color:var(--gold);

letter-spacing:6px;

margin-bottom:15px;

font-size:20px;

}

.overlay h1{

font-family:'Cinzel',serif;

font-size:90px;

line-height:90px;

margin-bottom:15px;

}

.overlay h2{

font-size:42px;

margin-bottom:20px;

font-weight:500;

}

.overlay p{

font-size:24px;

line-height:40px;

margin-bottom:35px;

}

/*=========================
BUTTONS
=========================*/

.buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.gold{

background:var(--gold);

padding:16px 35px;

text-decoration:none;

color:black;

font-weight:bold;

border-radius:8px;

transition:.3s;

}

.green{

background:var(--green);

padding:16px 35px;

text-decoration:none;

color:white;

font-weight:bold;

border-radius:8px;

transition:.3s;

}

.gold:hover,

.green:hover{

transform:translateY(-5px);

}

/*=========================
FACILITIES
=========================*/

.facilities{

padding:90px 8%;

background:var(--darkgreen);

}

.facilities h2{

text-align:center;

font-size:50px;

font-family:'Cinzel',serif;

margin-bottom:50px;

color:var(--gold);

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.card{

background:#0d3c2d;

border-radius:15px;

overflow:hidden;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.3);

}

.card:hover{

transform:translateY(-10px);

}

.card img{

width:100%;

height:250px;

object-fit:cover;

}

.card h3{

padding:20px 20px 10px;

font-size:28px;

color:var(--gold);

}

.card p{

padding:0 20px 25px;

line-height:28px;

}

/*=========================
WHY US
=========================*/

.why{

padding:90px 8%;

background:#082f23;

text-align:center;

}

.why h2{

font-size:48px;

margin-bottom:50px;

color:var(--gold);

font-family:'Cinzel',serif;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.why-grid div{

background:#0b4f3a;

padding:40px;

border-radius:15px;

transition:.3s;

}

.why-grid div:hover{

background:var(--copper);

}

.why-grid i{

font-size:55px;

margin-bottom:20px;

color:var(--gold);

}

.why-grid h3{

font-size:24px;

}

/*=========================
STATISTICS
=========================*/

.stats{

background:url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=80");

background-size:cover;

background-position:center;

padding:100px 8%;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

text-align:center;

gap:30px;

position:relative;

}

.stats::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

}

.stats div{

position:relative;

z-index:2;

}

.stats h1{

font-size:60px;

color:var(--gold);

}

.stats p{

font-size:22px;

}

/*=========================
FOOTER
=========================*/

footer{

background:#02130d;

padding:60px 20px;

text-align:center;

}

footer h2{

font-family:'Cinzel',serif;

font-size:42px;

color:var(--gold);

margin-bottom:15px;

}

footer p{

margin:10px 0;

color:#ddd;

}

/*=========================
ANIMATION
=========================*/

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1000px){

nav{

flex-direction:column;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

margin:20px 0;

}

nav ul li{

margin:10px;

}

.overlay h1{

font-size:60px;

line-height:65px;

}

.overlay h2{

font-size:30px;

}

.overlay p{

font-size:18px;

line-height:30px;

}

.facilities h2,

.why h2{

font-size:36px;

}

}

@media(max-width:768px){

.topbar{

flex-direction:column;

gap:10px;

text-align:center;

}

.logo{

text-align:center;

}

.logo h1{

font-size:32px;

}

.overlay{

text-align:center;

max-width:100%;

}

.buttons{

justify-content:center;

}

.hero{

justify-content:center;

}

}



/*============================

Sticky Navbar

============================*/

.sticky{

background:#06271d !important;

box-shadow:0 8px 20px rgba(0,0,0,.4);

transition:.4s;

}

/*============================

Hero Animation

============================*/

.hero{

transition:background-image 1s ease-in-out;

}

/*============================

WhatsApp Button

============================*/

.whatsapp{

position:fixed;

bottom:30px;

right:30px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:34px;

color:white;

box-shadow:0 8px 20px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*============================

Top Button

============================*/

#topBtn{

display:none;

position:fixed;

bottom:110px;

right:35px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#d4af37;

color:black;

font-size:22px;

cursor:pointer;

z-index:999;

transition:.3s;

}

#topBtn:hover{

transform:scale(1.1);

}

/*============================

Card Hover

============================*/

.card{

cursor:pointer;

}

.card img{

transition:.5s;

}

.card:hover img{

transform:scale(1.08);

}

/*============================

Buttons

============================*/

.gold,

.green,

.book-btn{

transition:.3s;

}

.gold:hover,

.green:hover,

.book-btn:hover{

box-shadow:0 12px 25px rgba(0,0,0,.35);

}


/*========================

ABOUT

=========================*/

.about{

padding:100px 8%;

background:#041b14;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.35);

transition:.4s;

}

.about-image img:hover{

transform:scale(1.03);

}

.about-text h4{

color:#d4af37;

letter-spacing:4px;

margin-bottom:15px;

}

.about-text h2{

font-size:48px;

font-family:'Cinzel',serif;

margin-bottom:25px;

}

.about-text p{

line-height:32px;

font-size:18px;

margin-bottom:30px;

color:#ddd;

}

.features{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin-bottom:35px;

}

.features div{

background:#0b4f3a;

padding:15px;

border-radius:8px;

transition:.3s;

}

.features div:hover{

background:#b87333;

}

.features i{

color:#d4af37;

margin-right:10px;

}

/*========================

PARALLAX

=========================*/

.parallax{

height:450px;

background:

linear-gradient(

rgba(0,0,0,.55),

rgba(0,0,0,.55)

),

url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2000&q=80");

background-size:cover;

background-position:center;

background-attachment:fixed;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

.parallax-content h1{

font-family:'Cinzel',serif;

font-size:60px;

color:#d4af37;

margin-bottom:20px;

}

.parallax-content p{

font-size:24px;

color:white;

}

/*========================

RESPONSIVE

=========================*/

@media(max-width:900px){

.about{

grid-template-columns:1fr;

}

.about-text{

text-align:center;

}

.features{

grid-template-columns:1fr;

}

.parallax-content h1{

font-size:38px;

}

.parallax-content p{

font-size:18px;

}

}


/*========================

SECTION TITLES

========================*/

.title{

text-align:center;

margin-bottom:60px;

}

.title h4{

color:#d4af37;

letter-spacing:4px;

margin-bottom:15px;

}

.title h2{

font-size:48px;

font-family:'Cinzel',serif;

margin-bottom:20px;

}

.title p{

max-width:800px;

margin:auto;

line-height:30px;

color:#ddd;

}

/*========================

EXPERIENCE

========================*/

.experience{

padding:100px 8%;

background:#06271d;

}

.experience-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.experience-card{

background:#0b4f3a;

border-radius:15px;

overflow:hidden;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.3);

}

.experience-card:hover{

transform:translateY(-10px);

}

.experience-card img{

width:100%;

height:250px;

object-fit:cover;

transition:.5s;

}

.experience-card:hover img{

transform:scale(1.08);

}

.experience-content{

padding:25px;

}

.experience-content h3{

font-size:28px;

margin-bottom:15px;

color:#d4af37;

}

.experience-content p{

line-height:28px;

margin-bottom:20px;

color:#ddd;

}

.experience-content a{

text-decoration:none;

color:#d4af37;

font-weight:bold;

}

/*========================

TESTIMONIALS

========================*/

.testimonials{

padding:100px 8%;

background:#041b14;

}

.testimonial-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.testimonial{

background:#0b4f3a;

padding:35px;

border-radius:15px;

text-align:center;

transition:.3s;

}

.testimonial:hover{

background:#b87333;

}

.testimonial p{

margin:25px 0;

line-height:30px;

}

.testimonial h3{

color:#d4af37;

}

/*========================

RESPONSIVE

========================*/

@media(max-width:768px){

.title h2{

font-size:36px;

}

.experience-grid{

grid-template-columns:1fr;

}

.testimonial-container{

grid-template-columns:1fr;

}

}

/*========================

GALLERY

========================*/

.gallery{

padding:100px 8%;

background:#08261d;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:15px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/*========================

BOOKING

========================*/

.booking-banner{

padding:100px 20px;

text-align:center;

background:linear-gradient(

rgba(0,0,0,.55),

rgba(0,0,0,.55)

),

url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80");

background-size:cover;

background-position:center;

}

.booking-banner h2{

font-size:54px;

font-family:'Cinzel',serif;

color:#d4af37;

margin-bottom:20px;

}

.booking-banner p{

font-size:22px;

margin-bottom:35px;

}

/*========================

SERVICES

========================*/

.services{

padding:100px 8%;

background:#041b14;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.service-grid div{

background:#0b4f3a;

padding:45px;

text-align:center;

border-radius:15px;

transition:.3s;

}

.service-grid div:hover{

background:#b87333;

transform:translateY(-8px);

}

.service-grid i{

font-size:55px;

color:#d4af37;

margin-bottom:20px;

}

.service-grid h3{

font-size:24px;

}

/*========================

CONTACT

========================*/

.contact-section{

padding:100px 8%;

background:#06271d;

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

align-items:center;

}

.contact-left h2{

font-size:48px;

font-family:'Cinzel',serif;

color:#d4af37;

margin-bottom:20px;

}

.contact-left p{

font-size:20px;

margin:15px 0;

line-height:32px;

}

.contact-right iframe{

width:100%;

height:450px;

border:none;

border-radius:15px;

}

/*========================

RESPONSIVE

========================*/

@media(max-width:900px){

.contact-section{

grid-template-columns:1fr;

}

.booking-banner h2{

font-size:38px;

}

.booking-banner p{

font-size:18px;

}

}

/*========================

GALLERY

========================*/

.gallery{

padding:100px 8%;

background:#08261d;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:15px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/*========================

BOOKING

========================*/

.booking-banner{

padding:100px 20px;

text-align:center;

background:linear-gradient(

rgba(0,0,0,.55),

rgba(0,0,0,.55)

),

url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80");

background-size:cover;

background-position:center;

}

.booking-banner h2{

font-size:54px;

font-family:'Cinzel',serif;

color:#d4af37;

margin-bottom:20px;

}

.booking-banner p{

font-size:22px;

margin-bottom:35px;

}

/*========================

SERVICES

========================*/

.services{

padding:100px 8%;

background:#041b14;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.service-grid div{

background:#0b4f3a;

padding:45px;

text-align:center;

border-radius:15px;

transition:.3s;

}

.service-grid div:hover{

background:#b87333;

transform:translateY(-8px);

}

.service-grid i{

font-size:55px;

color:#d4af37;

margin-bottom:20px;

}

.service-grid h3{

font-size:24px;

}

/*========================

CONTACT

========================*/

.contact-section{

padding:100px 8%;

background:#06271d;

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

align-items:center;

}

.contact-left h2{

font-size:48px;

font-family:'Cinzel',serif;

color:#d4af37;

margin-bottom:20px;

}

.contact-left p{

font-size:20px;

margin:15px 0;

line-height:32px;

}

.contact-right iframe{

width:100%;

height:450px;

border:none;

border-radius:15px;

}

/*========================

RESPONSIVE

========================*/

@media(max-width:900px){

.contact-section{

grid-template-columns:1fr;

}

.booking-banner h2{

font-size:38px;

}

.booking-banner p{

font-size:18px;

}

}


/* =====================================
   JJ GARDENS CONTACT PAGE
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --green:#0b4f3a;
    --gold:#d4af37;
    --white:#ffffff;
    --light:#f5f5f5;
    --dark:#333333;
}

body{
    font-family:Arial,sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.6;
}

/* =====================================
   HERO SECTION
===================================== */

.contact-hero{
    height:300px;

    background:
    linear-gradient(
        rgba(0,0,0,.6),
        rgba(0,0,0,.6)
    ),
    url('https://images.unsplash.com/photo-1571902943202-507ec2618f?auto=format&fit=crop&w=1600&q=80');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;
}

.hero-overlay{
    max-width:800px;
    padding:20px;
}

.hero-overlay h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero-overlay p{
    font-size:18px;
}

/* =====================================
   CONTACT SECTION
===================================== */

.contact-wrapper{
    padding:60px 20px;
}

.contact-grid{
    max-width:1000px;
    margin:auto;

    display:grid;
    grid-template-columns:1.5fr 1fr;

    gap:30px;
}

/* =====================================
   FORM CARD
===================================== */

.contact-form-card{
    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.contact-form-card h2{
    color:var(--green);
    margin-bottom:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group textarea{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--gold);
}

.contact-form-card button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    background:var(--gold);

    color:#fff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;
}

.contact-form-card button:hover{

    background:#b8922d;
}

/* =====================================
   CONTACT INFO CARD
===================================== */

.contact-info-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.contact-info-card h2{

    color:var(--green);

    margin-bottom:20px;
}

.info-item{

    margin-bottom:20px;
}

.info-item h4{

    color:var(--gold);

    margin-bottom:8px;
}

/* =====================================
   SUCCESS MESSAGE
===================================== */

.success-box{

    background:#d4edda;

    color:#155724;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;
    }

    .hero-overlay h1{

        font-size:34px;
    }

    .contact-form-card,
    .contact-info-card{

        padding:25px;
    }
}