:root{
--bg:#fff8e1;
--text:#1b3a1b;
--accent:#e67e22;
--secondary:#0a7b83;
--white:#ffffff;
--shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */
body{
font-family:Arial,sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
overflow-x:hidden;
}

/* LINKS */
a{
text-decoration:none;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
background:var(--text);
position:sticky;
top:0;
z-index:1000;
flex-wrap:wrap;
gap:15px;
}

/* LEFT NAV */
.nav-left{
display:flex;
align-items:center;
gap:12px;
}

/* LOGO */

.logo-img {
  width: 60px;
  height: 60px;
  border-four: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Mobile */

@media (max-width: 600px) {
  .logo-img {
    width: 60px;
    height: 60px;
  }
}

.logo-text{
color:var(--white);
font-size:24px;
font-weight:bold;
}

/* NAVIGATION */

.nav-links{
display:flex;
gap:10px;
list-style:none;
flex-wrap:wrap;
align-items:center;
}

/* NAV LINKS */

.nav-links a{
color:var(--white);
padding:10px 14px;
border-radius:6px;
transition:0.3s ease;
font-weight:600;
display:block;
}

/* ACTIVE + HOVER */

.nav-links a:hover,
.nav-links a.active{
background:var(--accent);
}

/* LOGOUT BUTTON */

.logout-btn{
padding:10px 16px;
background:#c0392b;
color:var(--white);
border:none;
border-radius:6px;
cursor:pointer;
transition:0.3s ease;
font-weight:bold;
}

.logout-btn:hover{
background:#922b21;
}

/* SECTIONS */

.content-section{
max-width:1200px;
margin:20px auto;
padding:25px;
background:rgba(255,255,255,0.97);
border-radius:12px;
box-shadow:var(--shadow);
}

/* HEADINGS */
h1,h2,h3{
margin-bottom:12px;
line-height:1.3;
}

p{
margin-bottom:15px;
}

/* CARD CONTAINER */
.card-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:20px;
}

/* CARD */
.card{
background:var(--white);
border-radius:12px;
overflow:hidden;
box-shadow:var(--shadow);
transition:0.3s ease;
display:flex;
flex-direction:column;
}

.card:hover{
transform:translateY(-6px);
}

/* CARD MEDIA */
.card img,
.card video{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* CARD TITLE */
.card h3{
padding:15px 15px 5px;
font-size:22px;
}

/* CARD TEXT */
.card p{
padding:0 15px 20px;
font-size:15px;
}

/* BUTTON */
.btn{
display:inline-block;
padding:12px 20px;
background:var(--secondary);
color:var(--white);
border:none;
border-radius:6px;
cursor:pointer;
transition:0.3s ease;
font-weight:bold;
margin-top:10px;
margin-right:10px;
text-align:center;
}

.btn:hover{
background:var(--text);
}

/* FORMS */
form{
display:flex;
flex-direction:column;
gap:14px;
margin-top:20px;
}

/* LABELS */
label{
font-weight:bold;
}

/* INPUTS */
input,
textarea,
select{
padding:12px;
border:1px solid #cccccc;
border-radius:6px;
width:100%;
font-size:16px;
outline:none;
background:#fff;
}

/* INPUT FOCUS */
input:focus,
textarea:focus,
select:focus{
border-color:var(--secondary);
box-shadow:0 0 5px rgba(10,123,131,0.3);
}

/* TEXTAREA */
textarea{
min-height:120px;
resize:vertical;
}

/* ===== FAQ SECTION ===== */
.faq-section {
max-width: 1000px;
margin: 40px auto;
padding: 25px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(40, 60, 50, 0.10); /* 🌿 NEW softer shadow */
}

/* SECTION TITLE */
.faq-section h2 {
text-align: center;
color: #3d5a54;   /* 🌿 NEW soft deep teal-green */
margin-bottom: 20px;
font-weight: 700;
}

/* QUESTION BUTTON */
.faq-question {
width: 100%;
text-align: left;
padding: 14px 16px;
border: none;
background: #f6f8f7;  /* 🌿 soft neutral green-white */
color: #3d5a54;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
border-radius: 8px;
transition: 0.3s ease;
font-weight: 600;
}

/* HOVER (NEW FRIENDLY COLOR) */
.faq-question:hover {
background: #eef3f1;  /* 🌿 soft calming mint-gray */
box-shadow: 0 3px 10px rgba(60, 80, 70, 0.08);
}

/* ACTIVE CLICK */
.faq-question:active {
transform: scale(0.99);
}

/* ANSWER BOX */
.faq-answer {
display: none;
padding: 12px 15px;
background: #fafbfa;  /* 🌿 very soft off-white green tint */
border-left: 4px solid #6b8f7a; /* 🌿 soft natural accent */
margin-bottom: 10px;
border-radius: 6px;
color: #444;
line-height: 1.6;
}

/* FOOTER */
footer{
text-align:center;
padding:25px;
background:var(--text);
color:var(--white);
margin-top:40px;
}

/* FOOTER TEXT */
.footer-box{
font-size:15px;
}

/* SEO TEXT */
.seo-text{
max-width:1000px;
margin:30px auto;
padding:20px;
text-align:center;
}


/* WHATSAPP FLOAT */
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:70px;
height:70px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:9999;
transition:0.3s ease;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* WHATSAPP ICON */
.whatsapp-float img{
width:40px;
height:40px;
}

/* HIDE SECTIONS */
#destinations,
#itinerary,
#booking{
display:none;
}

/* MOBILE */
@media(max-width:768px){

.navbar{
flex-direction:column;
text-align:center;
}

.nav-left{
flex-direction:column;
}

.logo-text{
font-size:20px;
}

.nav-links{
justify-content:center;
width:100%;
}

.nav-links a{
width:100%;
}

.card img,
.card video{
height:200px;
}

.content-section{
padding:18px;
margin:15px;
}

.btn{
width:100%;
margin-right:0;
}

}

/* SMALL MOBILE */
@media(max-width:480px){

.logo-img{
width:65px;
height:65px;
}

.logo-text{
font-size:18px;
}

.nav-links a{
padding:8px 10px;
font-size:14px;
}

.whatsapp-float{
width:60px;
height:60px;
}

.whatsapp-float img{
width:35px;
height:35px;
}

.card h3{
font-size:18px;
}

.card p{
font-size:14px;
}

}

.faq-answer {
display: none;
padding: 10px 15px;
background: #fff;
border-left: 3px solid #0a7b83;
margin-bottom: 10px;
border-radius: 5px;
}

.faq-question {
width: 100%;
text-align: left;
padding: 12px;
border: none;
background: #1b3a1b;
color: #fff;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
border-radius: 6px;
}

.faq-question:hover {
background: #0a7b83;
}

.section-box{
    background:#f7faf9;
    padding:15px;
    margin-bottom:12px;
    border-radius:10px;
    border-left:4px solid #0a7b83;
}

.section-box h4{
    margin-bottom:8px;
    color:#1b3a1b;
}

.form-box{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.section-box{
    background:#f4f8fb;
    padding:15px;
    margin-bottom:15px;
    border-radius:10px;
    border-left:4px solid #4a90a4;
}

.section-box h4{
    margin-bottom:10px;
    color:#4a6572;
}

.section-box ul{
    padding-left:20px;
}

.section-box li{
    margin-bottom:6px;
}

.form-box{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
}


/* =========================
   MOBILE RESPONSIVE FIX
   SummerWild Tanzania Safaris
   ========================= */

/* GENERAL MOBILE RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* NAVBAR MOBILE */
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
  height: auto;
}

.logo-text {
  font-size: 16px;
}

/* NAV LINKS STACK ON MOBILE */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a,
.logout-btn {
  font-size: 14px;
  padding: 6px 10px;
}

/* HERO / HOME SECTION */
.content-section {
  padding: 15px;
}

#home h2 {
  font-size: 22px;
}

#home p {
  font-size: 14px;
  line-height: 1.5;
}

/* BUTTONS MOBILE */
.btn {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  margin: 5px 0;
}

/* DESTINATION CARDS */
.card-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.card img,
.card-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ITINERARY FORMS */
#itinerary {
  padding: 10px;
}

select,
input,
textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  margin: 5px 0;
  border-radius: 6px;
}

/* FORM BOX */
.form-box {
  padding: 10px;
}

/* SECTION BOXES */
.section-box {
  background: #f8f8f8;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

/* FAQ MOBILE */
.faq-question {
  width: 100%;
  font-size: 14px;
  padding: 10px;
}

.faq-answer {
  font-size: 13px;
}

/* FOOTER */
footer{
    text-align:center;
    background:none;
    padding:20px;
}

/* SMALL CENTER BOX */
.footer-box{
    display:inline-block;
    background:green;
    color:white;

    padding:10px 20px;
    border-radius:10px;

    width:auto;
    max-width:90%;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
}

/* TABLET VIEW */
@media (min-width: 768px) {
  .card-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    width: 48%;
  }

  .nav-links {
    justify-content: flex-end;
  }
}

/* DESKTOP VIEW */
@media (min-width: 1024px) {
  .card {
    width: 30%;
  }
}

body {
  background-image: url("folder/toria.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* DARK OVERLAY FOR READABILITY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* SEO TEXT SECTION */
.seo-text {
  
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;

  width: 90%;
  max-width: 900px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TITLE */
.seo-text h2 {
  color: #ffffff;
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

/* PARAGRAPH */
.seo-text p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
}



body {
    font-size: 16px;
    line-height: 1.8;
}

p,
li {
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
}




