*{
    margin: 0;
    padding: 0;
}
/* Body and Font Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin-top: 35px; /* Ensure there's enough space for the fixed header */
}

/* Header Section */
header {
    position: relative;
    width: 100%;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Center everything horizontally */
    align-items: center; /* Center items vertically */
    padding: 10px 50px; /* Adjust padding */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Flex container to center logo and links */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    margin-right: 350px; /* Add space between logo and links */
}

.logo img {
    width: 85px;
    height: auto;
    border-radius: 8px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Center the nav links */
    align-items: center;
    margin: 0; 
}

.nav-links li {
    margin: 0 15px; /* Space between links */
}

.nav-links li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f0a500;
}

/* Book Now Button */
.btn-book {
    background: #f0a500;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: #e08900;
}

/* Mobile Navigation */
.burger {
    display: none; /* Hide on larger screens */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px; /* Reduce padding for mobile */
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        flex-direction: column; /* Stack links vertically */
        align-items: flex-start; /* Align links to the left */
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%; /* Full width */
        height: auto; /* Take minimum space */
        transform: translateX(100%);
        transition: transform 0.5s ease;
        padding: 10px 0; /* Padding for vertical links */
    }

    .nav-links li {
        margin: 10px 0; /* Space between links */
        padding-left: 20px; /* Indentation for links */
    }

    .nav-links a {
        font-size: 16px; /* Slightly smaller text */
        padding: 5px 0;  /* Reduce padding */
    }

    .btn-book {
        margin-left: 20px; /* Add margin to button */
    }

    /* Show burger icon */
    .burger {
        display: block; /* Show burger icon */
    }

    /* Navigation Menu Active State */
    .nav-active {
        transform: translateX(0); /* Show nav links */
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
/* Hero Section */
.hero {
    background-image: url('../image/gaya-transformed.jpeg'); 
    background-size: cover;
    background-position: center;
    height: 60vh; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white !important; 
    position: relative;
    z-index: 0;
    padding: 20px; 
}
.hero h1{
    color: #fff;
}

/* Add dark overlay to decrease brightness */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}


/* main body css  */

.about-city, .etymology, .geography-climate, .transportation {
    max-width: 800px;
    margin: 80px auto; /* Space below the fixed nav */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

h1 {
    margin-bottom: 20px;
}

h2 {
    margin-top: 30px;
}
/* Main section styling */
/* Main section styling */
.climate-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6d4d06, #cb9622); /* Gradient background for a modern look */
    padding: 60px 20px;
    border-radius: 10px;
}

/* Inner content styling */
.climate-content {
    background-color: #fff;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Title styling */
.climate-description h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.climate-description h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f0a500;
    border-radius: 5px;
}

/* Paragraph styling */
.climate-description p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #555;
    margin-bottom: 30px;
}

/* Climate details styling - Flexbox layout */
.climate-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Each card (detail item) */
.climate-details div {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.05); /* Softer shadow for each card */
    font-size: 16px;
    font-weight: 500;
    color: #333;
    flex: 1 1 22%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.climate-details div:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

.climate-details div:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f0a500;
}

.climate-details div p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Temperature highlights */
.climate-details div span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
}

/* Media queries for responsive design */
@media (max-width: 1024px) {
    .climate-details {
        flex-wrap: wrap;
    }

    .climate-details div {
        flex: 1 1 calc(50% - 20px); /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .climate-details div {
        flex: 1 1 100%;  /* Full-width cards on small screens */
    }
}



/* Global Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}


/* Transportation Section */
.transport-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.transport-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.transport-container p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

/* Transport Options Cards */
.transport-options {
    display: flex;
    justify-content: space-around; /* Distribute space between the cards */
    flex-wrap: wrap; /* Make sure it wraps on smaller screens */
    gap: 30px; /* Add gap between the cards */
}

.transport-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    width: 45%; /* Adjust width for better spacing */
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #fffd9e; /* Add a bottom border for emphasis */
}

.card-image.air {
    background-image: url(''); /* Add an air travel image */
}

.card-image.rail {
    background-image: url('rail-travel.jpg'); /* Add a rail travel image */
}

.card-image.road {
    background-image: url('road-travel.jpg'); /* Add a road travel image */
}

.card-image.local {
    background-image: url('local-travel.jpg'); /* Add a local transport image */
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #444;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .transport-card {
        width: 100%; /* Cards take full width on mobile */
    }
}


/* Center Heading */
.center-heading {
    text-align: center;
    margin: 20px 0;
}

.center-heading h2 {
    font-size: 28px;
    color: #333;
}

/* Main Container */
.main-visit {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Row for Images */
.visit-row {
    display: flex;
    justify-content: space-between; /* Space between cards */
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Card Structure */
.image-card {
    position: relative;
    width: 30%; /* Adjust to fit three cards */
    width: 350px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.image-card:hover img {
    opacity: 0.7;
}

/* Title of Image (Hidden Initially) */
.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 10px 10px;
}

/* Show Title on Hover */
.image-card:hover .image-title {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) { /* Tablets */
    .image-card {
        width: 45%; /* Two cards per row */
    }
}

@media (max-width: 768px) { /* Mobile */
    .image-card {
        width: 100%; /* Full width for mobile */
        height: auto; /* Adjust height to maintain aspect ratio */
    }

    .visit-row {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards */
    }
}


/* whatsapp */
.whatsapp-link {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 1000; 
  }
  
  .whatsapp-icon {
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    background-color: #25D366; 
    padding: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }
  
  /* Footer */
  footer {
      padding: 40px;
      background-color: #333;
      color: white;
      text-align: center;
  }
  
  
  
  /* Footer Section */
  .footer {
    background-color: #1a1a1a; /* Dark background */
    color: white; /* Text color */
    padding: 40px 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex-basis: 30%;
    margin: 20px 0;
  }
  
  .footer-section h1, .footer-section h3 {
    font-family: 'Georgia', serif; /* Similar to the logo font */
    color: white;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .logo h1 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .stars {
    font-size: 18px;
    color: #fffd9e; /* Gold-like color */
    margin-bottom: 15px;
  }
  
  /* Social Media Links */
  .social-media a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-media a:hover {
    color: #c6a87d; /* Gold-like color */
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
  
    .footer-section {
        flex-basis: 100%;
        margin: 10px 0;
    }
  }
  