body{
    font-family:'Poppins', sans-serif;
    }

body{
background:#dfdcdc; /* safari beige */
}
/* HERO NAVBAR */

.hero-navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding-top:30px;
}


/* CENTER AREA */

.nav-center{
    text-align:center;
}


/* LOGO */


.nav-logo{
    height:80px;
    width:auto;
    object-fit:contain;
    margin-bottom:20px;
    }
/* MENU */

.nav-menu{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:45px;
    padding:0;
}

.nav-menu a{
    text-decoration:none;
    color:white;
    font-weight:700;
    font-size:14px;
    letter-spacing:2px;
}

.nav-menu a:hover{
    color:#d4a017;
}


/* BOOK BUTTON */

.nav-book{
    position:absolute;
    top:30px;
    right:50px;
}


/* BEAUTIFUL BUTTON */

.book-btn{
background:linear-gradient(45deg,#c89b3c,#f4d06f);
color:black;
padding:12px 30px;
border-radius:60px 15px 60px 15px;
font-weight:600;
text-decoration:none;
transition:all 0.35s ease;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

/* HOVER EFFECT */

.book-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.35);
background:linear-gradient(45deg,#e2b64a,#f7dc8d);
}

/* FOOTER */

.site-footer{
background:linear-gradient(135deg,#1f3d2b,#3e2c1c);
color:#f5e7b2;
padding:80px 0 0 0;
}


/* LOGO */

.footer-logo{
width:160px;
margin-bottom:20px;
}


/* ABOUT TEXT */

.footer-about{
font-size:14px;
line-height:1.6;
color:#e7d9a5;
text-align:left;
margin-top:15px;
}

.footer-about{
max-width:260px;
margin-left:auto;
margin-right:auto;
}


/* TITLES */

.footer-title{
color:#f4d06f;
margin-bottom:20px;
font-weight:600;
letter-spacing:1px;
}


/* LINKS */

.footer-links,
.footer-contact{
list-style:none;
padding:0;
}

.footer-links li,
.footer-contact li{
margin-bottom:10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li{
color:#e7d9a5;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
color:#f4d06f;
padding-left:3px;
}


/* SOCIAL ICONS */

.social-icons{
display:flex;
gap:15px;
}

.social-icons a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#2f4f3e;
color:#f4d06f;
font-size:16px;
transition:0.3s;
}

.social-icons a:hover{
background:#f4d06f;
color:#1f3d2b;
transform:translateY(-3px);
}


/* COPYRIGHT */

.footer-bottom{
text-align:center;
padding:20px;
margin-top:60px;
background:#16291d;
color:#d8c98b;
font-size:14px;
}

.footer-dev{
color:#f4d06f;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.footer-dev:hover{
color:#ffffff;
}

.footer-col{
margin-bottom:35px;
}

.footer-logo-adjust{
display:block;
text-align:left;
padding-left:40px;
}

/* HERO SECTION */

.hero-section{
position:relative;
height:85vh;   /* shorter hero */
overflow:hidden;

/* SHARP OVAL BOTTOM */
border-bottom-left-radius:50% 120px;
border-bottom-right-radius:50% 120px;
}


/* VIDEO */

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}


/* BLACK OVERLAY */

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.50);
z-index:-1;
}


/* HERO CONTENT */

.hero-content{
position:absolute;
top:58%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
padding:20px;
}


/* TITLE */

.hero-title{
font-size:50px;
font-weight:500;
letter-spacing:3px;
text-shadow:0 5px 25px rgba(0,0,0,0.7);
margin-bottom:15px;
}


/* SUBTITLE */

.hero-subtitle{
font-size:15px;
font-weight:500;
text-shadow:0 3px 20px rgba(0,0,0,0.7);
}

@media (max-width:768px){

.hero-section{
height:75vh;
border-bottom-left-radius:50% 80px;
border-bottom-right-radius:50% 80px;
}

.hero-title{
font-size:32px;
letter-spacing:2px;
}

.hero-subtitle{
font-size:16px;
}

}

/* ABOUT SECTION */

.about-section{
position:relative;
padding:120px 0;
background:url('/static/images/aboutbg.jpg') center/cover no-repeat;
}


/* WHITE OVERLAY */

.about-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.88);
z-index:0;
}


/* CONTENT ABOVE OVERLAY */

.about-section .container{
position:relative;
z-index:1;
}


/* MAIN IMAGE */

/* IMAGE CONTAINER */

.about-images{
position:relative;
padding-right:60px; /* prevents touching text */
}


/* BIG IMAGE */

.about-main-img{
width:85%;
height:500px;
object-fit:cover;
border-radius:12px;
border:8px solid white;
}


/* SMALL IMAGE */

.about-small-img{
position:absolute;
bottom:-20px;
right:40px;

width:260px;
height:200px;

object-fit:cover;

border-radius:12px;
border:8px solid white;

box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

.about-content{
padding-left:40px;
}
/* TEXT */

.about-title{
font-size:36px;
font-weight:700;
margin-bottom:20px;
color:#2f4f3e !important;
}

.about-text{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}


/* READ MORE BUTTON */

.read-more-btn{
background:linear-gradient(45deg,#c89b3c,#f4d06f);
color:black;
padding:12px 30px;
border-radius:60px 15px 60px 15px;
font-weight:600;
text-decoration:none;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

.read-more-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

@media (max-width:768px){

.about-section{
padding:80px 0;
}

.about-title{
font-size:28px;
}

}

@media (max-width:768px){

.about-main-img{
width:100%;
height:380px;
}

.about-small-img{
position:relative;
width:200px;
height:130px;
bottom:auto;
right:auto;
margin-top:20px;
}

.about-content{
padding-left:0;
margin-top:40px;
}

}

/* DESTINATIONS SECTION */

.destinations-section{
padding:120px 0;
background:#f5f3ea;
}


/* TITLE */

.destinations-title{
font-size:38px;
font-weight:700;
margin-bottom:15px;
color:#2f4f3e;
}


/* SUBTITLE */

.destinations-subtitle{
max-width:650px;
margin:0 auto 60px auto;
font-size:16px;
color:#555;
line-height:1.7;
}


/* CARD */

.destination-card{
position:relative;
display:flex;
flex-direction:column;
height:100%;
transition:0.4s;
}


/* IMAGE */

.destination-image{
height:380px;
overflow:hidden;
border-radius:120px 120px 20px 20px;
}

.destination-image img{
width:100%;
height:100%;
object-fit:cover;
transition:0.6s;
}


/* CONTENT */

.destination-content{
background:white;
padding:25px;
border-radius:15px;

position:relative;
margin-top:-70px;
margin-left:25px;
margin-right:25px;

box-shadow:0 15px 35px rgba(0,0,0,0.15);

flex-grow:1;
}


/* TEXT */

.destination-content h4{
font-weight:600;
margin-bottom:10px;
color:#2f4f3e;
}


/* META */

.destination-meta{
display:flex;
align-items:center;
gap:10px;
margin-bottom:6px;
}

.stars{
color:#f4b400;
font-size:14px;
}

.reviews{
font-size:13px;
color:#777;
}


/* LOCATION */

.destination-location{
font-size:13px;
color:#2f4f3e;
margin-bottom:12px;
}


/* DESCRIPTION */

.destination-content p{
font-size:14px;
color:#555;
line-height:1.6;
}


/* HOVER */

.destination-card:hover img{
transform:scale(1.1);
}

.destination-card:hover{
transform:translateY(-10px);
}


/* EXPLORE BUTTON */

.explore-btn-wrap{
margin-top:40px;
}

/* GALLERY SECTION */

.gallery-section{
padding:120px 0;
background:linear-gradient(135deg,#1f3d2b,#3e2c1c);
}

/* TITLE */

.gallery-title{
font-size:38px;
font-weight:700;
color:#ffffff;
margin-bottom:15px;
}

/* SUBTITLE */

.gallery-subtitle{
max-width:650px;
margin:0 auto 60px auto;
font-size:16px;
color:#d9e5dc;
line-height:1.7;
}


/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
grid-auto-rows:220px;
gap:20px;
}


/* ITEM */

.gallery-items{
position:relative;
overflow:hidden;
border-radius:12px;
border:2px solid white;
}

.gallery-items img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}


/* IMAGE POSITIONS */

/* top row */

.img1{
grid-column:1;
grid-row:1;
}

.img2{
grid-column:2;
grid-row:1;
}

/* tall image on right */

.img3{
grid-column:3;
grid-row:1 / span 2;
}

/* wide image */

.img4{
grid-column:1 / span 2;
grid-row:2;
}

/* bottom row */

.img5{
grid-column:1;
grid-row:3;
}

.img6{
grid-column:2;
grid-row:3;
}

.img7{
grid-column:3;
grid-row:3;
}


/* HOVER */

.gallery-item:hover img{
transform:scale(1.08);
}

/* BUTTON */

.gallery-btn{
margin-top:50px;
}

@media (max-width:768px){

.gallery-grid{
grid-template-columns:1fr 1fr;
grid-auto-rows:160px;
}

.img3{
grid-column:1 / span 2;
grid-row:auto;
}

.img4{
grid-column:1 / span 2;
}

.img7{
grid-column:1 / span 2;
}

}

/* LIGHTBOX */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:85%;
border-radius:10px;
}

.lightbox-close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/* WHY SECTION */

/* WHY SECTION */

.why-section{
position:relative;
padding:120px 0;

background:url('/static/images/birdbg.jpeg') center/cover no-repeat;
}


/* WHITE OVERLAY */

.why-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(255,255,255,0.92);

z-index:0;
}


/* KEEP CONTENT ABOVE OVERLAY */

.why-section .container{
position:relative;
z-index:1;
}

/* LEFT IMAGE */

.why-image img{
width:95%;
height:660px;
object-fit:cover;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


/* RIGHT CONTENT */

.why-content{
padding-left:60px;
}


/* TITLE */

.why-title{
font-size:38px;
font-weight:700;
color:#2f4f3e;
margin-bottom:15px;
}


/* SUBTITLE */

.why-subtitle{
margin-bottom:35px;
font-size:16px;
color:#555;
line-height:1.7;
}


/* LONG CARD */

.why-long-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}


/* ITEM */

.why-item{
display:flex;
gap:20px;
margin-bottom:25px;
}

.why-item:last-child{
margin-bottom:0;
}


/* ICON */

.why-icon{
width:55px;
height:55px;
flex-shrink:0;

display:flex;
align-items:center;
justify-content:center;

background:#2f4f3e;
color:white;

border-radius:50%;

font-size:20px;
}


/* TEXT */

.why-item h4{
font-size:18px;
font-weight:600;
color:#2f4f3e;
margin-bottom:5px;
}

.why-item p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* REVIEWS SECTION */

.reviews-section{
padding:120px 0;
background:#f5f3ea;
}


/* TITLE */

.reviews-title{
font-size:38px;
font-weight:700;
color:#2f4f3e;
margin-bottom:15px;
}


/* SUBTITLE */

.reviews-subtitle{
max-width:700px;
margin:0 auto 70px auto;
font-size:16px;
color:#555;
line-height:1.7;
}


/* CARD */

.review-card{
background:white;
padding:35px;
border-radius:20px;
text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,0.08);

transition:0.35s;
height:100%;
}

/* REVIEW LOGO */

.review-logo{
margin-bottom:20px;
}

.review-logo img{
height:80px;
width:auto;
object-fit:contain;
}


/* TEXT */

.review-text{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:20px;
}


/* NAME */

.review-name{
font-size:16px;
font-weight:600;
color:#2f4f3e;
}


/* HOVER */

.review-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* STARS */

.review-stars{
margin:10px 0 15px 0;
color:#f4b400;
font-size:16px;
}

/* CTA SECTION */

.cta-section{
background:linear-gradient(50deg,#1f3d2b,#3e2c1c);   /* same tone as footer */
padding:80px 0;
border-bottom:2px solid #f4d06f;  /* thin yellow line */
}


/* IMAGE */

.cta-image img{
width:100%;
height:460px;
object-fit:cover;
border-radius:15px;
box-shadow:0 15px 35px rgba(0,0,0,0.25);
}


/* TITLE */

.cta-title{
font-size:36px;
font-weight:700;
color:#ffffff;
margin-bottom:15px;
}


/* TEXT */

.cta-text{
color:#d9e5dc;
font-size:16px;
line-height:1.7;
margin-bottom:25px;
max-width:520px;
}

/* CONTACT HERO */


/* CONTACT HERO */

.contact-hero{
height:70vh;
background:url('/static/images/g3.jpg') center/cover no-repeat;
position:relative;
}


/* overlay */

.contact-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}


/* PERFECT CENTER */

.contact-hero .hero-content{
position:absolute;
top:61%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:2;
}

.contact-hero-title{
font-size:48px;
font-weight:700;
}

.contact-hero-subtitle{
font-size:18px;
margin-top:10px;
}



/* CONTACT SECTION */

.contact-section{
background:#f5f3ea;
padding-bottom:100px;
}



/* CONTACT CARD */

.contact-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);

display:flex;
flex-direction:column;
height:100%;
}

.contact-title{
font-size:26px;
font-weight:700;
color:#2f4f3e;
margin-bottom:25px;
}

.contact-card i{
color:#2f4f3e;
font-size:20px;
margin-bottom:5px;
}

.contact-link{
color:#555;
text-decoration:none;
}

.contact-link:hover{
color:#193024;
}



/* MAP */

.map-box{
width:100%;
height:450px;
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.contact-map-btn{
display:inline-block;
padding:12px 26px;

background:#2f4f3e;
color:white;

border-radius:30px;
text-decoration:none;
font-weight:600;

transition:0.3s;
}

.contact-map-btn:hover{
background:#c89b3c;
color:white;
}.contact-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
overflow:hidden;
position:relative;
}


/* attached button */

.contact-map-btn{
display:block;
width:100%;

background:#2f4f3e;
color:white;

text-align:center;
padding:16px;

font-weight:600;
text-decoration:none;

margin-top:auto;

border-radius:0 0 20px 20px;

transition:0.3s;
}

.contact-map-btn:hover{
background:#c89b3c;
color:white;
}

/* HERO */

/* FULL PAGE HERO */

.gallery-hero{
position:relative;
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;

overflow:hidden;

color:white;
padding-top:180px;
}

/* VIDEO */

.gallery-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* OVERLAY */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:linear-gradient(
to right,
rgba(0,0,0,0.75),
rgba(0,0,0,0.4),
rgba(0,0,0,0.2)
);

z-index:-1;
}

/* TEXT */

.gallery-content{
position:relative;
z-index:2;
}

.gallery-title{
font-size:45px;
font-weight:700;
margin-bottom:20px;
}

.gallery-description{
font-size:18px;
max-width:520px;
line-height:1.7;
margin-bottom:40px;
}

/* MANUAL SCROLL */

.gallery-scroll{
overflow-x:auto;
overflow-y:hidden;
white-space:nowrap;

padding-left:120px;   /* pushes images away from left */
padding-bottom:10px;

scrollbar-width:none;
}

.gallery-scroll::-webkit-scrollbar{
display:none;
}

.gallery-track{
display:flex;
gap:25px;
}

/* SQUARE PHOTOS */

.gallery-item{
flex:0 0 auto;
}

.gallery-item img{
width:300px;
height:200px;

object-fit:cover;

border-radius:14px;

cursor:pointer;

box-shadow:0 15px 35px rgba(0,0,0,0.35);

transition:0.3s;
}

.gallery-item img:hover{
transform:scale(1.07);
}

/* LIGHTBOX */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.9);

display:none;

align-items:center;
justify-content:center;

z-index:9999;
}

.lightbox img{
max-width:85%;
max-height:85%;
border-radius:10px;
}

.lightbox-close{
position:absolute;
top:40px;
right:50px;
font-size:40px;
color:white;
cursor:pointer;
}

.gallery-hero + footer{
display:none;
}

/* ABOUT HERO */

.about-hero{
height:70vh;
background:url('/static/images/g18.jpg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.about-hero .hero-content{
position:absolute;
top:60%;
left:50%;
transform:translate(-50%, -50%);
text-align:center;
width:100%;
}

.about-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1;
}

.hero-content{
z-index:2;
}

.about-tiitle{
font-size:48px;
font-weight:700;
color: #fff !important;
}


/* ABOUT SECTION */

.about-section{
padding:120px 0;
position:relative;
}

.about-bg-light{
background:url('/static/images/bird.jpg') center/cover no-repeat;
}


.about-bg-light::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.9);
}

.about-section .container{
position:relative;
z-index:2;
}


/* IMAGE */

.about-img{
width:100%;
height:520px;
object-fit:cover;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


/* TEXT */

.about-heading{
font-size:36px;
font-weight:700;
margin-bottom:20px;
color:#2f4f3e;
}

.about-text{
font-size:17px;
line-height:1.8;
color:#555;
}


/* CTA SECTION */

.about-cta{
position:relative;
padding:120px 0;
background:url('/static/images/g15.jpg') center/cover no-repeat;
text-align:center;
color:white;
}

.cta-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.about-cta .container{
position:relative;
z-index:2;
}

.cta-title{
font-size:42px;
font-weight:700;
margin-bottom:15px;
}

.cta-text{
max-width:650px;
margin:auto;
margin-bottom:25px;
font-size:18px;
}

.tours-hero{
height:70vh;
background:url('/static/images/tour.jpg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.tours-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.tours-hero .hero-content{
position:absolute;
top:58%;
left:50%;
transform:translate(-50%,-50%);
z-index:2;
width:100%;
}

.tours-title{
font-size:48px;
font-weight:700;
}

.tours-subtitle{
max-width:600px;
margin:auto;
margin-top:10px;
font-size:18px;
}

/* BLOG SECTION */

.blog-section{
position:relative;
padding:120px 0;

background:url('/static/images/birdbg.jpeg') center/cover no-repeat;
}


/* WHITE OVERLAY */

.blog-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(255,255,255,0.92);

z-index:0;
}


/* KEEP CONTENT ABOVE OVERLAY */

.blog-section .container{
position:relative;
z-index:2;
}


/* TITLE */

.blog-title{
font-size:38px;
font-weight:700;
color:#2f4f3e;
margin-bottom:10px;
}

.blog-subtitle{
max-width:650px;
margin:0 auto 70px auto;
font-size:16px;
color:#555;
}


/* CARD */

.blog-card{
position:relative;
display:block;

height:520px;

border-radius:18px;

overflow:hidden;

text-decoration:none;

color:white;

box-shadow:0 20px 40px rgba(0,0,0,0.12);
}


/* IMAGE */

.blog-img{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

transition:0.6s;
}


/* OVERLAY */

.blog-overlay{
position:absolute;

bottom:0;
left:0;

width:100%;
height:100%;

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:25px;

background:linear-gradient(
to top,
rgba(0,0,0,0.9),
rgba(0,0,0,0.45),
transparent
);

transition:0.4s;
}


/* TITLE */

.blog-card-title{
font-size:22px;
font-weight:600;

margin-bottom:1px;

transform:translateY(30px);

transition:0.4s;
}


/* DESCRIPTION */

.blog-desc{
font-size:14px;
line-height:1.6;

opacity:0;

transform:translateY(30px);

transition:0.4s;
}


/* BLOG LINK */

.blog-link{
margin-top:10px;

font-size:14px;
font-weight:600;

opacity:0;

transform:translateY(30px);

transition:0.4s;
}


/* HOVER IMAGE ZOOM */

.blog-card:hover .blog-img{
transform:scale(1.1);
}


/* TITLE MOVES HIGHER */

.blog-card:hover .blog-card-title{
transform:translateY(-25px);
}


/* DESCRIPTION APPEARS */

.blog-card:hover .blog-desc,
.blog-card:hover .blog-link{
opacity:1;
transform:translateY(0);
}


/* ARROW ANIMATION */

.blog-link i{
margin-left:6px;
transition:0.3s;
}

.blog-card:hover .blog-link i{
transform:translateX(6px);
}

/* BLOG HEADER */

.blog-post-header{
padding:200px 0 40px 0;
text-align:center;
}

.blog-post-title{
font-size:44px;
font-weight:700;
max-width:850px;
margin:auto;
color:#2f4f3e;
}

.blog-meta{
margin-top:10px;
color:#777;
font-size:14px;
}



/* HERO IMAGE */

.blog-hero-image img{
width:100%;
height:350px;
object-fit:cover;
}



/* BLOG CONTENT */

.blog-content{
padding:80px 0;
}

.blog-content .container{
max-width:800px;
}


/* LEAD TEXT */

.lead-paragraph{
font-size:20px;
line-height:1.8;
color:#444;
margin-bottom:40px;
}



/* HEADINGS */

.blog-content h2{
margin-top:40px;
margin-bottom:10px;
font-size:28px;
color:#2f4f3e;
}



/* PARAGRAPHS */

.blog-content p{
line-height:1.8;
color:#555;
margin-bottom:20px;
}



/* INLINE BLOG IMAGES */

.blog-inline-img{
width:100%;
margin:40px 0;
border-radius:14px;
}

/* slightly wider images */

.wide-img{
width:110%;
margin-left:-5%;
}


/* FINAL TEXT */

.closing-text{
margin-top:30px;
font-weight:500;
font-size:18px;
}