 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     width: 100%;
 }

 html,
 body {
     overflow-x: hidden;
 }

 @font-face {
     font-family: 'prompt';
     src: url('../fonts/Prompt-Bold.ttf') format('truetype');
 }

 /* Hero Banner */
 .hero-banner {
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
         url('../img/hero-destination.jpg') center/cover;
     height: 80vh;
     display: flex;
 }

 /* Main Content */
 .container {
     margin-top: 20px;
     margin-left: 5%;
     margin-right: 5%;
 }

 /* navigation */
 .path {
     background-color: white;
     padding: 20px 0;
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 13px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .path a {
     color: #282828;
     text-decoration: none;
 }

 .path-separator {
     color: #000;
     font-weight: 300;
 }

 h1 {
     font-family: 'prompt';
     margin-bottom: 30px;
     text-transform: uppercase;
     font-size: 36px;
 }

 .intro-text {
     font-size: 16px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 60px;
 }

 /* Map Section */
 .map-section {
     margin: 60px 0;
 }


 .map-container {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     margin-left: 20%;
     margin-right: 20%;
     height: 700px;
     align-items: center;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* Section Title */
 .section-title {
     font-size: 24px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 30px;
     text-align: left;
 }

 .section-description {
     font-size: 15px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 60px;
 }

 /* Destinations Section */
 .destinations-section {
     padding: 30px 0;
 }

 /* Destinations Grid */
 .destinations-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     margin-bottom: 80px;
 }

 .destination-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .destination-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .destination-image-container {
     position: relative;
     width: 100%;
     height: 270px;
     overflow: hidden;
     border-radius: 12px 12px 0 0;
 }

 .destination-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .destination-card:hover .destination-image {
     transform: scale(1.08);
 }

 .destination-content {
     padding: 25px 30px;
 }

 .destination-title {
     font-size: 20px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 60px;
     color: #1a1a1a;
 }

 .destination-description {
     font-size: 15px;
     color: #666;
     line-height: 1.5;
     margin-bottom: 40px;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .destinations-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }
 }

 @media (max-width: 768px) {
     .container {
         margin-left: 4%;
         margin-right: 4%;
     }

     .destinations-grid {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .hero-banner {
         height: 400px;
         width: 100%;
     }

     h1 {
         font-size: 28px;
     }

     .section-title {
         font-size: 28px;
     }

     .destination-image-container {
         height: 180px;
     }

     .map-container {
         margin-left: 5%;
         margin-right: 5%;
         height: 500px;
     }

     .intro-text {
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .container {
         margin-left: 3%;
         margin-right: 3%;
     }

     h1 {
         font-size: 24px;
         margin-bottom: 20px;
     }

     .intro-text {
         font-size: 14px;
         margin-bottom: 40px;
     }

     .section-title {
         font-size: 24px;
     }

     .destination-image-container {
         height: 160px;
     }

     .destination-content {
         padding: 20px;
     }

     .destination-title {
         font-size: 18px;
         margin-bottom: 40px;
     }

     .destination-description {
         font-size: 14px;
     }

     .map-container {
         margin-left: 0;
         margin-right: 0;
         height: 400px;
     }

     .hero-banner {
         height: 300px;
         width: 100%;
     }

     .path {
         font-size: 11px;
         gap: 10px;
     }
 }

 /* iPhone SE (375px) specific */
 @media (max-width: 375px) {
     h1 {
         font-size: 22px;
     }

     .section-title {
         font-size: 22px;
     }

     .intro-text {
         font-size: 13px;
     }

     .destination-image-container {
         height: 150px;

     }

     .destination-content {
         padding: 18px;
     }

     .destination-title {
         font-size: 17px;
     }

     .destination-description {
         font-size: 13px;
     }

     .map-container {
         height: 350px;
     }

     .path {
         font-size: 10px;
         gap: 8px;
     }
 }