/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  line-height: 1.8;
  background: #f4f6f5;
  text-transform: none;
  letter-spacing: 0.3px;
}

/* ===== HEADER ===== */
header{
    position:relative;
    background:url('background.png') center top no-repeat;
    background-size:contain;
    background-color:#000;
    min-height:650px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding-bottom:40px;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

header * {
  position: relative;
  z-index: 1;
}


/* ===== BUTTONS ===== */
.btn, .nav-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 10px;
}


.highlight { background: #d32f2f; }
 
/* ===== NAVIGATION ===== */
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 25px;
}

.nav-btn { padding: 12px 24px; margin: 0; }

/* nav colors */
.nav-btn:nth-child(1) { background: #1976d2; }
.nav-btn:nth-child(2) { background: #2e7d32; }
.nav-btn:nth-child(3) { background: #ef6c00; }
.nav-btn:nth-child(4) { background: #6a1b9a; }
.nav-btn:nth-child(5) { background: #d32f2f; }
.nav-btn:nth-child(6) { background: #00897b; }

/* ===== SECTIONS ===== */
.section-block {
  max-width: 1100px;
  margin: 40px auto;
  padding: 60px 40px; /* updated */
  background: #fff;
  border-radius: 16px;
}

.section-block.gray { background: #eef1ef; }

#about   { border-top: 10px solid #60A5FA; }
#Chikkamgaluru_Itinerary    { border-top: 10px solid #34D399; }
#Car_Rentals { border-top: 10px solid #FBBF24; }
#food    { border-top: 10px solid #2DD4BF; }
#stay    { border-top: 10px solid #A78BFA; }
#social { border-top: 10px solid #4F46E5; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  margin-top: 30px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* ===== LIST ===== */
ul { padding-left: 22px; }
ul li { margin: 10px 0; }

.extra {
  color: #d32f2f;
  font-weight: 700;
}

/* ===== DAY HEADINGS ===== */
.day-title {
  color: #fff;
  padding: 16px;
  margin: -30px -30px 30px;
  text-align: center;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
}

.card:nth-of-type(1) .day-title { background: linear-gradient(90deg,#00695c,#26a69a); }
.card:nth-of-type(2) .day-title { background: linear-gradient(90deg,#1976d2,#42a5f5); }
.card:nth-of-type(3) .day-title { background: linear-gradient(90deg,#ef6c00,#fb8c00); }
.card:nth-of-type(4) .day-title { background: linear-gradient(90deg,#6a1b9a,#8e24aa); }

/* ===== FORMS ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form input {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* ===== POPUP ===== */
#popupOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

/* popup buttons */
.popup .btn { background: #616161; }
.popup .whatsapp { background: #25d366 !important; }

/* ===== FOOTER ===== */
footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 25px;
}
/* ===== FOOD IMAGES ===== */
.food-images {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.food-images img {
  width: 300px;
  height: auto; /* natural height */
  max-height: 260px;
  border-radius: 12px;
}

/* hover effect (premium look) */
.food-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.section-block p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}


h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
}

#about h2 { color: #1E90FF }
#Chikkamgaluru_Itinerary h2 { color: #059669; }
#Car_Rentals h2 { color: #D97706; }
#food h2 { color: #0F766E; }
#stay h2 { color: #7C3AED; }
#social h2 { color: #3730A3; }  
  margin-top: 0;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

ul li {
  margin: 12px 0;
  font-size: 15px;
}


.btn, .nav-btn {
  font-size: 15px;
  letter-spacing: 0.5px;
}


h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.section-block:first-of-type {
  margin-top: 20px;
}


.section-block:first-of-type {
  margin-top: 20px;
}

/* ===== ADD FROM HERE ===== */



.header-nav{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:20px;
    position:relative;
}

.header-nav .nav-btn {
  border-radius: 20px;
}

.header-nav .highlight {
  background: #d32f2f;
}

.card {
  border-left: 5px solid #ddd;
}

#about .card   { border-left-color: #60A5FA; }
#Chikkamgaluru_Itinerary .card    { border-left-color: #34D399; }
#Car_Rentals .card { border-left-color: #FBBF24; }
#food .card    { border-left-color: #2DD4BF; }
#stay .card    { border-left-color: #A78BFA; }
#social .card { border-left-color: #4F46E5; }

@media (max-width: 768px) {
  .food-images {
    grid-template-columns: 1fr; /* 1 image per row on mobile */
  }
}

.day-inner {
  display: flex;
  align-items: center;
  gap: 10px; /* reduce space between text & image */
  margin-top: 10px;
}

/* LIST */
.day-inner ul {
  flex: 1;
  margin: 0;
}

/* IMAGE */
.day-img {
  display: flex;
  align-items: center;
}

.day-img img {
  width: 300px;
  max-height: 220px;
  object-fit: contain;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .day-inner {
    flex-direction: column;
    text-align: center;
  }

  .day-img img {
    width: 100%;
    height: auto;
  }
}

.day-inner {
  justify-content: space-between;
}


@media (max-width:768px){

.bottom-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    max-width:1200px;
}
.bottom-btn{
    width:85%;
    max-width:320px;
    padding:10px 16px;
    font-size:14px;
    margin:0 auto;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color:#fff !important;
    text-decoration:none;
    border-radius:30px;
    display:block;
    text-align:center;
}

header{
    height:auto;
    min-height:100vh;
}

}

.bottom-btn {
  padding: 12px 22px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}

.bottom-btn:hover {
  background: white;
  color: black;
}

.day-img {
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.day-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.social_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-btn{
    display:flex;
    align-items:center;

    width:320px;      /* same width for all */
    height:55px;      /* same height for all */

    padding:0 20px;   /* left & right spacing */
    box-sizing:border-box;

    border-radius:50px;

    color:white !important;
    text-decoration:none;
    font-weight:600;
}
#social .card{
    overflow:hidden;
}
.social-btn i {
  margin-right: 10px;
  width: 20px;
}
.social-btn i {
  color: white !important;
  margin-right: 15px;
  width: 30px;
  font-size: 22px;
}

.whatsapp {
  background: #25d366;
}

.email {
  background: #FF6B35;
}

.instagram {
  background: #E1306C;
}

.facebook {
  background: #1877F2;
}

.twitter {
  background: #000000;
}

.youtube {
  background: #FF0000;
}

.maps {
  background: #efb608;
}

.social-btn {
  color: white !important;
}

.social-btn i {
  color: white !important;
  font-size: 20px;
  margin-right: 10px;
}

footer {
  background: #1b1b1b;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer h3 {
  margin-bottom: 10px;
  color: #F5BF03;
}

footer p {
  margin: 8px 0;
}


.service-list {
  padding-left: 25px; /* acts like one tab space */
}
/* ===== FLOATING BOOK NOW BUTTON ===== */

.book-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #002B6F; /* Blue */
    color: white;

    padding: 15px 30px;
    border-radius: 50px;

    text-decoration: none;
    font-size: 20px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 12px;

    z-index: 9999;
    animation: blink 1s infinite;
}

.calendar-icon {
    width: 28px;
    height: 28px;
}

.arrow {
    font-size: 50px;
    font-weight: 100;
    line-height: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* MOBILE */

@media screen and (max-width: 768px) {

  .book-now-btn {
    bottom: 15px;
    right: 15px;

    padding: 12px 18px;
    font-size: 14px;
  }

}
@media (max-width:768px){

  .day-img{
      width:100%;
      max-width:100%;
  }

  .day-img img{
      width:100%;
      max-width:100%;
      height:auto;
      display:block;
  }

}
header{
    position:relative;
    background:url('background.png') center top no-repeat;
    background-size:100% auto;
    background-color:#000;

    min-height:600px;   /* important */

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding-bottom:30px;
}

@media (max-width:768px){

header{
    min-height:500px;
}

}

@media (max-width:768px){

#Car_Rentals .food-images{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

#Car_Rentals .food-images img{
    width:90%;
    max-width:320px;
    height:auto;
    display:block;
    margin:0 auto;
}

#Car_Rentals .service-list{
    padding-left:20px;
    padding-right:10px;
}

}
