/* Modern Color Palette */
:root {
    --primary-color: #4a6fa5;  /* Soft blue */
    --secondary-color: #ff7e5f;  /* Coral */
    --accent-color: #6bd4cd;  /* Mint */
    --dark-color: #2d3748;  /* Dark blue-gray */
    --light-color: #f7fafc;  /* Lightest gray */
    --text-color: #4a5568;  /* Gray-blue */
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-out;
  }
  
  /* Base Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

          .logo-link {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: inherit;
        }

        .logo-image {
        height: 247px;  /* Reduced from 30px */
        width: auto;
        }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
  }
  
  /* Layout */
  .container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Typography */
  h1, h2, h3, h4 {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    font-size: 1rem;
  }
  
  .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  
  /* Header & Navigation */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  .header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  /* Navigation - Clean Style */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-item {
    position: relative;
    list-style: none; /* Remove bullets */
  }
  
  .nav-item > a {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
  }
  
  /* Hover effect - subtle color change */
  .nav-item > a:hover {
    color: var(--primary-color);
  }
  
  /* Active state - bold text */
  .nav-item > a.active {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    padding: 0.5rem 0;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-menu li {
    padding: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
  }
  
  .dropdown-menu a:hover {
    background: rgba(75, 111, 165, 0.1);
    color: var(--primary-color);
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
  }
  
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark-color);
    transition: var(--transition);
    position: absolute;
    left: 0;
  }
  
  .menu-toggle span:nth-child(1) {
    top: 0;
  }
  
  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-toggle span:nth-child(3) {
    bottom: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 70px;
  }
  
  .hero-content {
    max-width: 700px;
    color: var(--white);
  }
  
  .hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }
  
  /* Places Section */
  .places {
    padding: 6rem 0;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    position: relative;
  }
  
  .section-title::after {
    display: none;
  }
  
  /* Place Cards Section - Updated */
.places-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .place-card {
    display: block; /* Changed to block for full card clickability */
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .place-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  
  .place-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .place-card:hover .place-image {
    transform: scale(1.05);
  }
  
  .place-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .place-content {
    padding: 1.5rem;
  }
  
  .place-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
  }
  
  .place-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .place-meta {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .place-details {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
  }
    
  /* Responsive Styles */
  @media (max-width: 992px) {
    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-item {
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      width: 100%;
      box-shadow: none;
      display: none;
      padding: 0;
      margin-top: 0.5rem;
      border-left: 2px solid var(--primary-color);
      background: rgba(75, 111, 165, 0.05);
    }
  
    .dropdown.active .dropdown-menu {
      display: block;
    }
  
    .hero h1 {
      font-size: 2.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      min-height: 600px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .places-container {
      grid-template-columns: 1fr;
    }
  }

/* Footer Styles */
.footer {
    background: var(--dark-color);
    color: #eee;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bbb;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ddd;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #999;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}