/* =========================
   SSTravel Modern UI Theme
========================= */

/* 🎨 Color Variables */
:root {
  --primary: #0A2540;
  --secondary: #00A8A8;
  --accent: #FF7A00;
  --bg-light: #F5F7FA;
  --white: #FFFFFF;
  --text-dark: #0A2540;
  --text-light: #5F6C7B;
}

/* =========================
   GLOBAL STYLES
========================= */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 600;
}

p {
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  transition: 0.3s;
  z-index: 1000;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.navbar.scrolled a {
  color: var(--primary);
}

.navbar a:hover {
  color: var(--accent);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(10,37,64,0.85), rgba(0,168,168,0.75)),
              url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: 48px;
  color: var(--white);
}

.hero p {
  font-size: 18px;
  color: #E0E6ED;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #E66A00;
}

.btn-secondary {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 12px 26px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 40px;
}

.section-light {
  background: var(--bg-light);
}

.section-white {
  background: var(--white);
}

/* =========================
   CARDS (TOURS)
========================= */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: auto;
}

.card-body {
  padding: 20px;
}

.card-title {
  color: var(--primary);
  font-size: 20px;
}

.card-price {
  color: var(--accent);
  font-weight: bold;
}

/* =========================
   ICON BOX
========================= */
.icon-box {
  text-align: center;
  padding: 20px;
}

.icon-box i {
  background: #E6F7F7;
  color: var(--secondary);
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

/* =========================
   CTA SECTION
========================= */
.cta {
  background: linear-gradient(135deg, #FF7A00, #FF9A3D);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta .btn {
  background: var(--white);
  color: var(--accent);
  margin-top: 20px;
}

/* =========================
   FOOTER
========================= */
/*.footer {
  background: var(--primary);
  color: var(--white) !important;
  padding: 40px;
}
.footer h3 {
  color: var(--white) !important;
}
.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}*/
footer h3{
  color: var(--white);
}
/* =========================
   IMAGE HOVER EFFECT
========================= */
.image-hover {
  overflow: hidden;
}

.image-hover img {
  transition: 0.4s;
}

.image-hover:hover img {
  transform: scale(1.1);
}