* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #87ceeb, #f0e68c);
    text-align: center;
    color: #2c3e50;
    overflow-x: hidden;
}
/* navbar */
header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 20px;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}
nav ul li a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f1c40f;
    transition: width 0.3s ease;
}
nav ul li a:hover::after {
    width: 100%;
}
/* hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}
.hamburger-active {
    transform: rotate(45deg);
}
.hamburger-active .line:nth-child(2) {
    width: 0;
}
.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}
.hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
}
.menubar {
    position: fixed;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: rgba(44, 62, 80, 0.95);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}
.menubar.active {
    left: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.menubar ul {
    padding: 0;
    list-style: none;
    text-align: center;
}
.menubar ul li {
    margin-bottom: 40px;
}
.menubar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    display: block;
    background: rgba(255, 255, 255, 0.1);
}
.menubar ul li a:hover {
    background: #f1c40f;
    color: #2c3e50;
}
/* header */
header {
    padding: 20px;
}
header h1 {
    margin: 0;
    padding: 0 0 10px 0;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
}
/* hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/pexels-passengerslover-31842468\ \(1\).jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    font-size: 28px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
}
.hero h2 {
    margin: 0;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    color: #2c3e50;
}
/* destinations cards */
.destinations {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.destination-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.destination-card:hover {
    transform: scale(1.03);
}
.destination-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}
.explore-btn {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}
.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.5);
}
/* destination details */
.destination-hero {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}
.destination-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}
.destination-hero img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.destination-details {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.destination-details h2, .destination-details h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}
.destination-details p, .destination-details ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: center;
}
.destination-details ul {
    list-style: none;
    padding-left: 0;
}
.destination-details ul li {
    position: relative;
    padding-left: 20px;
}
.destination-details ul li::before {
    content: '✔';
    color: #e67e22;
    position: absolute;
    left: 0;
}
/* gallery */
.gallery {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.gallery h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}
.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    padding: 0 20px;
}
.gallery-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}
.gallery-images img:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
/* book button */
.book-btn {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}
.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}
/* footer */
.footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-column p {
    font-size: 16px;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #080808;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #f1c40f;
    transform: rotate(360deg);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #bdc3c7;
}
/* responsive page */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero {
        padding: 40px 10px;
        font-size: 18px;
    }
    .destinations {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .gallery-images {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .gallery-images img {
        height: 200px;
    }
    .footer {
        padding: 20px;
    }
}
@media screen and (max-width: 480px) {
    header {
        padding: 10px 5px;
        font-size: 16px;
    }
    .hero {
        padding: 30px 10px;
        font-size: 16px;
    }
    .destination-card img {
        height: 150px;
    }
    .destination-hero h1 {
        font-size: 1.8rem;
    }
    .destination-details h2 {
        font-size: 1.5rem;
    }
    .gallery-images img {
        height: 150px;
    }
    .book-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}