* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #87ceeb, #f0e68c);
    color: #2c3e50;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
/* 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 {
    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 {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 20px;
    font-size: 24px;
}
h1 {
    font-size: 40px;
    text-align: center;
    margin: 20px 0;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
/* search */
.search p {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-size: 19px;
    max-width: 800px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.search-container {
    margin: 2rem auto;
    max-width: 90%;
    width: 600px;
    position: relative;
}
.search-container input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 1rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
}
.search-container input:focus {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}
.search-container button {
    position: absolute;
    right: 10px;
    top: 10px;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.6);
}
/* featured destinations */
.featured-destinations {
    margin-bottom: 3rem;
}
.featured-destinations h3 {
    text-align: center;
    color: #023e8a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    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: all 0.3s ease;
}
.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.destination-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s;
}
.destination-card:hover .destination-image img {
    transform: scale(1.1);
}
.destination-info {
    padding: 1.5rem;
}
.destination-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}
.destination-info p {
    color: #666;
    margin-bottom: 1rem;
    text-align: left;
}
.destination-meta {
    display: flex;
    justify-content: flex-start;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}
.read-more {
    display: inline-block;
    background: linear-gradient(45deg, #0f1010, #023e8a);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(2, 62, 138, 0.3);
}
.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 62, 138, 0.5);
}
/* special offers */
.special-offers {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
}
.special-offers h3 {
    text-align: center;
    color: #050505;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.offers {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 1.5rem;
}
.offer-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #e74c3c);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.offer-image {
    height: 150px;
}
.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-info {
    padding: 1rem;
}
.offer-info h4 {
    color: #023e8a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.offer-info .price {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.offer-info .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}
/* 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;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: #000000;
    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 design */
@media screen and (max-width: 900px) {
    .offers {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .special-offers h3 {
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 29px;
        font-weight: bold;
    }
    .search p {
        font-size: 16px;
    }
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .special-offers {
        padding: 1rem;
    }
    .special-offers h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .category {
        width: 110px;
    }
    .destination-info h4 {
        font-size: 1.1rem;
    }
    .destinations {
        padding: 20px;
    }
}
@media screen and (max-width: 600px) {
    .categories {
        gap: 0.7rem;
    }
    .category {
        width: 100px;
        padding: 0.8rem;
    }
    .category h4 {
        font-size: 12px;
    }
    .destinations {
        padding: 10px;
    }
    .offers {
        grid-template-columns: 1fr;
    }
    .special-offers h3 {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    .search p {
        font-size: 14px;
        width: 95%;
    }
    .search-container input {
        padding: 0.8rem;
    }
    .destination-image {
        height: 180px;
    }
    .categories {
        justify-content: space-around;
    }
    .category {
        width: 90px;
        padding: 0.7rem;
    }
    .destination-info p {
        font-size: 13px;
    }
    .destination-meta {
        font-size: 0.8rem;
    }
}