
	 

    body {
      font-family: 'Inter', sans-serif;
      background: #fcfaf7;
      color: #1e2a2f;
      line-height: 1.5;
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER (same as home) ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 8px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      z-index: 1000;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      color: #b76e2e;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      font-weight: 500;
      text-transform: uppercase;
      font-size: 0.95rem;
    }
    .nav-links a {
      text-decoration: none;
      color: #1e2a2f;
    }
    .nav-links a:hover { color: #b76e2e; }
    .nav-links a.active { border-bottom: 2px solid #b76e2e; }

    .menu-icon { display: none; font-size: 1.8rem; }

    /* ===== PAGE HEADER ===== */
    .page-header {
      margin-top: 90px;
      background: linear-gradient(135deg, #2d2119 0%, #4f3a29 100%);
      color: white;
      padding: 70px 0 50px;
      text-align: center;
      border-bottom-left-radius: 60px;
      border-bottom-right-radius: 60px;
    }
    .page-header h1 {
      font-size: 4rem;
      margin-bottom: 16px;
    }
    .page-header p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* ===== DESTINATION CARD (large feature) ===== */
    .dest-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin: 80px 0;
      background: white;
      border-radius: 48px;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.25);
      transition: 0.4s;
    }
    .dest-feature:hover { transform: scale(1.01); box-shadow: 0 40px 60px -20px #b76e2e80; }
    .dest-feature-img {
      height: 100%;
      min-height: 400px;
      background-size: cover;
      background-position: center;
    }
    .dest-feature-content {
      padding: 48px 48px 48px 0;
    }
    .dest-feature-content h2 { font-size: 3rem; margin-bottom: 12px; }
    .dest-highlight { display: flex; gap: 24px; margin: 24px 0; flex-wrap: wrap; }
    .dest-highlight span { background: #f0ebe6; padding: 8px 20px; border-radius: 60px; font-size: 0.95rem; }
    .btn {
      padding: 14px 34px;
      border-radius: 60px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      background: #b76e2e;
      color: white;
      display: inline-block;
      text-decoration: none;
      transition: 0.2s;
    }
    .btn-outline-dark {
      background: transparent;
      border: 2px solid #b76e2e;
      color: #b76e2e;
      margin-left: 16px;
    }
    .btn:hover { opacity: 0.8; transform: scale(1.05); }

    /* ===== DESTINATION CARDS GRID ===== */
    .section-title {
      font-size: 2.8rem;
      margin: 70px 0 30px;
      position: relative;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: #b76e2e;
      margin-top: 10px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 28px;
      margin-bottom: 60px;
    }

    .destination-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .destination-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 45px -12px #b76e2e80;
    }
    .card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .card-content {
      padding: 24px 20px 28px;
    }
    .card-content h3 {
      font-size: 2rem;
      margin-bottom: 8px;
    }
    .card-meta {
      display: flex;
      gap: 16px;
      margin: 16px 0;
      color: #6f5e4e;
    }
	.card a{
		text-decoration:none !important;
		color:inherit;
	}

    /* ===== TRAVEL TIPS (within dest page) ===== */
    .tips-panel {
      background: #e9dfd3;
      border-radius: 48px;
      padding: 48px;
      margin: 60px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: space-between;
    }
    .tip-item { flex: 1 1 150px; }
    .tip-item i { font-size: 2.5rem; color: #b76e2e; margin-bottom: 16px; }

    /* ===== NEWSLETTER (small) ===== */
    .newsletter-mini {
      background: #152126;
      color: white;
      border-radius: 100px;
      padding: 16px 24px 16px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin: 40px 0;
    }
    .newsletter-mini input {
      padding: 12px 24px;
      border-radius: 60px;
      border: none;
      min-width: 260px;
    }
	
    .newsletter-mini button {
      background: #b76e2e;
      border: none;
      padding: 12px 32px;
      border-radius: 60px;
      color: white;
      font-weight: 600;
    }

    footer {
      background:#3a2a1f;
      color: #ccc;
      padding: 60px 0 30px;
      margin-top: 80px;
    }
	
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 40px;
    }

    /* responsive */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .menu-icon { display: block; }
      .dest-feature { grid-template-columns: 1fr; }
      .dest-feature-content { padding: 24px; }
      .page-header h1 { font-size: 3rem; }
      .newsletter-mini { border-radius: 40px; gap: 16px; }
    }
	
    .logo {
        display: flex;
        align-items: center;
		
     }
	.nav-logo {
		height:90px;
		width:auto;
	}
	






