/* =============================================================================
   ENKARE TOURS AND TRAVELS - SAFARI WEBSITE STYLES
   Kenya Safari Theme with Earth Tones
   ============================================================================= */

/* CSS Variables for consistent theming */
:root {
  /* Earth Tone Color Palette */
  --primary-brown: #8B4513;
  --secondary-brown: #A0522D;
  --light-brown: #DEB887;
  --dark-brown: #5D4037;
  --safari-green: #4A7C59;
  --light-green: #6B8E23;
  --cream: #F5F5DC;
  --sand: #F4A460;
  --gold: #DAA520;
  --white: #FFFFFF;
  --black: #2C2C2C;
  --gray-light: #F8F8F8;
  --gray-medium: #E0E0E0;
  --gray-dark: #666666;
  
  /* Typography */
  --font-primary: 'Georgia', 'Times New Roman', serif;
  --font-secondary: 'Arial', 'Helvetica', sans-serif;
  --font-accent: 'Brush Script MT', cursive;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =============================================================================
   RESET AND BASE STYLES
   ============================================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; color: var(--primary-brown); }
h2 { font-size: 2rem; color: var(--primary-brown); }
h3 { font-size: 1.5rem; color: var(--secondary-brown); }

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Links */
a {
  text-decoration: none;
  color: var(--safari-green);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-brown);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--safari-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--light-green);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: var(--gold);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-brown);
}

/* =============================================================================
   HEADER STYLES
   ============================================================================= */

/* Top notification bar */
.top-bar {
  background-color: var(--primary-brown);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
  text-align: center;
}

.top-bar a {
  color: var(--cream);
  text-decoration: underline;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--primary-brown);
  font-weight: bold;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  font-weight: 500;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: var(--light-brown);
  color: var(--primary-brown);
}

/* Contact Info */
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
}

.phone {
  color: var(--primary-brown);
  font-weight: bold;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-brown);
  transition: 0.3s;
}

/* =============================================================================
   HERO CAROUSEL STYLES
   ============================================================================= */

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.carousel-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Carousel overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

/* Carousel navigation */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* =============================================================================
   SECTION STYLES
   ============================================================================= */

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold);
}

/* =============================================================================
   TOURS GRID STYLES
   ============================================================================= */

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-card-content {
  padding: 20px;
}

.tour-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
}

.tour-price {
  color: var(--safari-green);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* =============================================================================
   ACTIVITIES SECTION
   ============================================================================= */

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.activity-card {
  text-align: center;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-3px);
}

.activity-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

/* =============================================================================
   WHY CHOOSE US SECTION
   ============================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--safari-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */

.stats {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--cream);
  font-size: 1.1rem;
}

/* =============================================================================
   ABOUT SECTION
   ============================================================================= */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 2rem;
}

.about-text {
  order: 1;
}

.about-images {
  order: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* =============================================================================
   FOOTER STYLES
   ============================================================================= */

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--gray-medium);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

/* Social Media */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--safari-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
}

/* Payment methods */
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-methods img {
  height: 30px;
  width: auto;
  background: var(--white);
  padding: 5px;
  border-radius: 4px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 20px;
  text-align: center;
  color: var(--gray-medium);
}

/* =============================================================================
   FORM STYLES
   ============================================================================= */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-brown);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--safari-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

/* Tablet */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--box-shadow);
    flex-direction: column;
    padding: 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .carousel-content h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-images {
    order: 1;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 15px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-carousel {
    height: 400px;
  }
  
  .carousel-content h1 {
    font-size: 2rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
} 