/* --------------------
   Base styles
--------------------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #ffffff;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --------------------
   Layout helpers
--------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------
   Header
--------------------- */
.site-header {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.main-nav a {
    margin-left: 20px;
    font-size: 15px;
    color: #333;
}

/* --------------------
   Hero section
--------------------- */
.hero {
    position: relative;
    min-height: 70vh;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("../images/hero-ganga.jpg") center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 32px;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-buttons {
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}


.hero-actions {
    margin-top: 20px;
}

.hero-actions a {
    display: inline-block;
    margin-right: 15px;
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid #1a73e8;
    font-weight: 500;
}

.hero-actions a:first-child {
    background: #1a73e8;
    color: #fff;
}

.hero-actions a:last-child {
    background: #fff;
}

/* --------------------
   Sections
--------------------- */
section {
    padding: 40px 0;
}

.quick-info ul,
.itineraries ul {
    list-style: disc;
    padding-left: 20px;
}

.quick-info li,
.itineraries li {
    margin-bottom: 8px;
}

/* --------------------
   Footer
--------------------- */
.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.page-header {
    background: #f8f9fa;
    padding: 40px 0;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-content {
    padding: 30px 0;
}

section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}


.hero-buttons a {
  margin: 10px;
  display: inline-block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.btn-primary {
  background: #1e88e5;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-secondary {
  background: #eee;
  color: #333;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
}

.link-more {
  display: inline-block;
  margin-top: 15px;
}

.btn-primary,
.btn-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
