/*======================================
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:32px;

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('jj/images/DJI_0726.JPG');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.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("3.jpg");

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:26px;

}

.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(jj/3.jpg");

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://jjgardens.online/jj/images/3.jpg");

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("5.jpg");

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;

}

}

.booking-page{

padding:120px 8%;

background:#041b14;

}

.booking-form{

max-width:700px;

margin:auto;

display:grid;

gap:15px;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

padding:15px;

border:none;


border-radius:8px;

outline:none;

font-size:16px;

}

.booking-form textarea{

min-height:120px;

}

.booking-form button{

background:linear-gradient(45deg,#b87333,#d4af37);

padding:15px;

border:none;

color:white;

font-size:18px;

cursor:pointer;

border-radius:8px;

transition:.3s;

}

.booking-form button:hover{

transform:translateY(-5px);

}

.login-box{

max-width:400px;

margin:100px auto;

background:#0b4f3a;

padding:30px;

border-radius:10px;

}

.login-box input{

width:100%;

padding:12px;

margin:10px 0;

border:none;

border-radius:5px;

}

.login-box button{

width:100%;

padding:12px;

background:#d4af37;

border:none;

font-weight:bold;

cursor:pointer;

}

.admin-container{

padding:50px;

}

.stats-box{

display:flex;

gap:20px;

margin:30px 0;

}

.stat{

background:#0b4f3a;

padding:30px;

border-radius:10px;

min-width:200px;

text-align:center;

}

.btn-approve{

background:#28a745;

color:white;

padding:6px 10px;

text-decoration:none;

border-radius:5px;

font-size:12px;

margin-right:5px;

display:inline-block;

margin-bottom:5px;

}

.btn-reject{

background:#dc3545;

color:white;

padding:6px 10px;

text-decoration:none;

border-radius:5px;

font-size:12px;

margin-right:5px;

display:inline-block;

margin-bottom:5px;

}

.btn-complete{

background:#007bff;

color:white;

padding:6px 10px;

text-decoration:none;

border-radius:5px;

font-size:12px;

margin-right:5px;

display:inline-block;

margin-bottom:5px;

}

.btn-delete{

background:#333;

color:white;

padding:6px 10px;

text-decoration:none;

border-radius:5px;

font-size:12px;

display:inline-block;

margin-bottom:5px;

}

.btn-view{

background:#17a2b8;
color:white;
padding:6px 10px;
text-decoration:none;
border-radius:5px;
font-size:12px;
margin-right:5px;
display:inline-block;
margin-bottom:5px;

}

/* =====================================
   CONTACT PAGE
===================================== */

.contact-page{

    min-height:100vh;

    padding:80px 20px;

    background:
    linear-gradient(
    rgba(11,79,58,.85),
    rgba(11,79,58,.85)),
    url('jj/images/6.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

}

.contact-page .container{

    width:100%;
    max-width:700px;

    background:#ffffff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.contact-page h1{

    text-align:center;

    color:#0b4f3a;

    margin-bottom:10px;

}

.contact-page p{

    text-align:center;

    color:#666;

    margin-bottom:30px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#333;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

    transition:.3s;

    box-sizing:border-box;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#d4af37;

    outline:none;

    box-shadow:0 0 8px rgba(212,175,55,.3);

}

.form-group textarea{

    resize:vertical;

}

.contact-page button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    background:#d4af37;

    color:#fff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.contact-page button:hover{

    background:#b8922d;

}

.success-message{

    background:#d4edda;

    color:#155724;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;

    text-align:center;

}

.error-message{

    background:#f8d7da;

    color:#721c24;

    padding:15px;

    border-radius:8px;

    margin-bottom:20px;

    text-align:center;

}

/* Mobile */

@media(max-width:768px){

    .contact-page .container{

        padding:25px;

    }

}



/* =====================================
CONTACT PAGE
===================================== */

.contact-section{

min-height:80vh;

display:flex;

justify-content:center;

align-items:center;

padding:80px 20px;

background:
linear-gradient(
rgba(0,40,25,.85),
rgba(0,40,25,.85)
);

}

.contact-card{

width:100%;

max-width:700px;

background:#fff;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.contact-card h2{

text-align:center;

color:#0b4f3a;

margin-bottom:10px;

}

.contact-card p{

text-align:center;

margin-bottom:25px;

color:#666;

}

.form-group{

margin-bottom:18px;

}

.form-group input,
.form-group textarea{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

box-sizing:border-box;

}

.form-group input:focus,
.form-group textarea:focus{

outline:none;

border-color:#d4af37;

}

.contact-card button{

width:100%;

padding:15px;

background:#d4af37;

color:white;

border:none;

border-radius:8px;

font-size:16px;

font-weight:bold;

cursor:pointer;

}

.contact-card button:hover{

background:#b68d26;

}

.success-box{

background:#d4edda;

color:#155724;

padding:15px;

border-radius:8px;

margin-bottom:20px;

text-align:center;

}