/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f8faff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navbar-brand {
  font-weight: bold;
  font-size: 1.8rem;
}

.nav-link {
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffb347;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.3)), url('../assets/hero-bg.jpg') center/cover;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.hero .btn:hover {
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #1890ff;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 1.1rem;
  color: #555;
}

/*--------------------------------------------------------------
# Featured Destinations
--------------------------------------------------------------*/
.featured-destinations {
    background-color: #f8f9fa;
}

/*--------------------------------------------------------------
# Travel Tips
--------------------------------------------------------------*/
.travel-tips .tip {
    text-align: center;
}

.travel-tips .tip-icon {
    font-size: 3rem;
    color: #1890ff;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: url('../assets/cta-bg.jpg') center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 15px;
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer p {
  color: #ccc;
}

footer a.text-white:hover {
  text-decoration: underline !important;
}

/*--------------------------------------------------------------
# Small Hero Section (for internal pages)
--------------------------------------------------------------*/
.hero-small {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/*--------------------------------------------------------------
# Legal Pages Content Styling
--------------------------------------------------------------*/
.container.mt-5 h1, .container.mt-5 h2, .container.mt-5 h3, .container.mt-5 h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.container.mt-5 h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.container.mt-5 h3 {
    font-size: 1.4rem;
}

.container.mt-5 h4 {
    font-size: 1.2rem;
}

.container.mt-5 p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.container.mt-5 ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.container.mt-5 ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.container.mt-5 strong {
    font-weight: 600;
}