* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    padding: 0;
}

.container {
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #007bff; 
}

.logo i {
    margin-right: 5px;
    color: #007bff;
}

.nav-links a {
    margin: 0 15px;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.btn {
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s, opacity 0.3s;
}

.btn-register {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
    margin-right: 10px;
}

.btn-signin {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.btn-signin:hover {
    background-color: #0056b3;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 550px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 40px; 
    right: 40px; 
    width: auto; 
    height: 100%;
    border-radius: 15px; 
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.65); 
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-bar {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: fit-content;
    margin: 30px auto 0;
    position: relative;
}

.input-group {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #eee;
    position: relative;
}

.input-group:last-of-type {
    border-right: none;
}

.input-group i {
    color: #555;
    margin-right: 10px;
    font-size: 16px;
}

.input-group input {
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    width: 180px; 
}

.input-group input::placeholder {
    color: #888;
}

.btn-search {
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    margin-left: 10px;
    border-radius: 8px;
}

.btn-search:hover {
    background-color: #0056b3;
}

.alert-banner {
    background-color: #ffc107; 
    color: #333;
    padding: 15px 25px; 
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 50px;
    border-radius: 15px; 
    justify-content: flex-start; 
}

.alert-banner i {
    color: #725e00; 
    font-size: 20px;
    margin-left: 0; 
    margin-right: 15px; 
}

.alert-banner a {
    color: #725e00;
    font-weight: bold;
    text-decoration: underline;
    margin-right: 5px;
}

.features-section, .destinations-section {
    padding: 50px 0; 
    background-color: #f8f8f8;
}

.features-section h2, .destinations-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: left; 
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: left; 
    margin-left: 0; 
    margin-right: auto;
}

.features-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    gap: 20px;
}

.feature-item {
    flex: 1;
    background-color: #fff; 
    border-radius: 12px;
    padding: 30px 20px; 
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 36px;
    color: #007bff; 
    margin-bottom: 20px;
    border: none; 
    background-color: transparent; 
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.destinations-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.destinations-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.destination-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 15px 0 20px 0; 
    text-align: left;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card-info p {
    font-size: 14px;
    color: #666;
}

.inspiration-section {
    padding: 50px 0; 
    background-color: #f8f8f8;
}

.inspiration-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.inspiration-grid {
    display: flex;
    gap: 20px;
}

.inspiration-card {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 350px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.inspiration-card:hover {
    transform: translateY(-5px);
}

.inspiration-card.large, 
.inspiration-card.medium {
    flex: 1; 
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.card-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-overlay p {
    font-size: 14px;
    color: #ccc;
}

.hotels-section {
    padding: 50px 0; 
    background-color: #f8f8f8;
}

.hotels-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.hotels-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hotel-card {
    flex: 1; 
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    display: block;
}

.hotel-card .card-info {
    padding: 15px 0 20px 0;
    text-align: left;
}

.activities-section {
    padding: 50px 0; 
    background-color: #f8f8f8;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.activities-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.see-all-link {
    color: #007bff;
    font-size: 16px;
    font-weight: 500;
}

.activities-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, 1fr); 
    height: 500px; 
}

.activity-card {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: scale(1.02);
}

.activity-card .card-overlay {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    width: 100%;
}

.activities-grid .large-v:nth-child(1) { 
    grid-column: 1 / 2; 
    grid-row: 1 / 2;
    height: 100%; 
}

.activities-grid .small-h:nth-child(3) { 
    grid-column: 1 / 2; 
    grid-row: 2 / 3;
    height: 100%; 
}

.activities-grid .large-h { 
    grid-column: 2 / 3; 
    grid-row: 1 / 3;
    height: 100%;
}

.activities-grid .large-v:nth-child(2) { 
    grid-column: 3 / 5; 
    grid-row: 1 / 2;
    height: 100%;
}

.activities-grid .activity-card:nth-child(5) { 
    grid-column: 3 / 4; 
    grid-row: 2 / 3;
    height: 100%;
}

.activities-grid .activity-card:nth-child(6) { 
    grid-column: 4 / 5; 
    grid-row: 2 / 3;
    height: 100%;
}

.footprints-section {
    padding: 80px 0 50px 0; 
    background-color: #fff;
    text-align: center;
}

.footprints-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    text-align: left; 
}

.footprints-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 80px;
}

.footprint-item {
    text-align: center;
    flex-basis: 25%;
}

.footprint-icon {
    font-size: 38px;
    color: #ffc107;
    background-color: #fff4d8; 
    border-radius: 50%;
    padding: 15px;
}

.footprint-item .number {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.footprint-item .label {
    font-size: 16px;
    color: #666;
}

.app-banner {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 50px;
    color: #fff;
    text-align: left;
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url('Download the mobile application for bonus coupons and travel codes.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.app-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    width: 350px;
    height: 100%;
    background-image: url('Download the mobile application for bonus coupons and travel code.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    z-index: 1; 
}

.banner-content {
    max-width: 50%;
    z-index: 2;
}

.banner-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.btn-download {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
}

.btn-download:hover {
    background-color: #0056b3;
}

.main-footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 60px 0 0 0; 
    text-align: center;
}

.footer-header-section {
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.footer-header-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.discover-box {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #0056b3;
}

.footer-links-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-column {
    flex-basis: 20%;
}

.logo-column .logo {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.logo-column .logo i {
    margin-right: 5px;
    color: #007bff;
}

.tagline {
    font-size: 14px;
    color: #666;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.copyright {
    text-align: center;
    padding: 20px 0;
}

.copyright p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px; 
    }

    .nav-links {
        display: none; 
    }

    .hero-image-container {
        left: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .search-bar {
        width: 90%;
        max-width: 700px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .input-group {
        border-right: none;
        width: 45%; 
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .input-group input {
        width: 100%;
    }

    .input-group:nth-child(2), .input-group:nth-child(4) {
        border-right: none;
    }

    .input-group:last-of-type {
        border-bottom: none;
    }
    
    .btn-search {
        width: 95%;
        margin: 10px auto 0;
    }

    .features-container {
        flex-wrap: wrap;
    }

    .feature-item {
        flex-basis: 48%; 
        margin-bottom: 15px;
    }

    .destinations-grid, .hotels-grid, .inspiration-grid {
        flex-wrap: wrap;
    }
    
    .destination-card, .hotel-card {
        flex-basis: 48%; 
        margin-bottom: 15px;
    }

    .inspiration-card.large, .inspiration-card.medium {
        flex-basis: 48%;
        height: 250px;
    }

    .inspiration-card:nth-child(3) {
        flex-basis: 98%; 
    }


    .activities-grid {
        grid-template-columns: repeat(3, 1fr); 
        grid-template-rows: repeat(2, 1fr);
        height: 400px; 
    }

    .activities-grid .large-v:nth-child(1), 
    .activities-grid .small-h:nth-child(3) { 
        grid-column: 1 / 2;
    }

    .activities-grid .large-h { 
        grid-column: 2 / 3; 
        grid-row: 1 / 3; 
    }

    .activities-grid .large-v:nth-child(2) {
        grid-column: 3 / 4; 
        grid-row: 1 / 2;
    }

    .activities-grid .activity-card:nth-child(5) { 
        grid-column: 3 / 4; 
        grid-row: 2 / 3;
    }

    .activities-grid .activity-card:nth-child(6) { 
        display: none; 
    }
    
    .footprints-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footprint-item {
        flex-basis: 48%; 
        margin-bottom: 20px;
    }
    
    .app-banner {
        height: 250px;
        padding: 30px;
    }

    .app-banner::after {
        right: 20px;
        width: 200px;
    }

    .banner-content {
        max-width: 60%;
    }

    .banner-content h3 {
        font-size: 24px;
    }

    .footer-links-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column {
        flex-basis: 48%; 
        margin-bottom: 30px;
    }

    .logo-column {
        flex-basis: 100%;
        text-align: center;
    }
}


@media (max-width: 600px) {
    .container {
        padding: 0 15px; 
    }


    .navbar {
        padding: 15px 0;
        justify-content: space-between;
    }

    .auth-buttons {
        display: none; 
    }

    .hero-image-container {
        left: 15px;
        right: 15px;
        height: 400px;
    }

    .hero-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .search-bar {
        width: 100%;
        padding: 5px;
    }

    .input-group {
        width: 100%; 
        border-bottom: 1px solid #eee;
        padding: 10px;
        text-align: left;
    }
    
    .input-group:first-child {
        padding-top: 15px;
    }

    .input-group:last-of-type {
        border-bottom: 1px solid #eee; 
    }

    .btn-search {
        width: 95%;
        margin: 10px auto 10px;
    }

    .features-container {
        flex-direction: column; 
    }

    .feature-item {
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    .destinations-grid, .hotels-grid, .inspiration-grid {
        flex-direction: column; 
    }
    
    .destination-card, .hotel-card, .inspiration-card, 
    .inspiration-card.large, .inspiration-card.medium {
        flex-basis: 100%;
        margin-bottom: 15px;
        height: 250px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(3, 1fr); 
        height: auto; 
    }

    .activities-grid .large-v:nth-child(1), 
    .activities-grid .small-h:nth-child(3) { 
        grid-column: span 1;
        grid-row: auto;
    }

    .activities-grid .large-h {
        grid-column: span 1; 
        grid-row: 1 / 3; 
    }

    .activities-grid .large-v:nth-child(2) {
        grid-column: span 1; 
        grid-row: 1 / 2;
        order: 1; 
    }

    .activities-grid .activity-card:nth-child(5) { 
        grid-column: 1 / 2; 
        grid-row: 3 / 4;
    }

    .activities-grid .activity-card:nth-child(6) { 
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        display: block; 
    }

    .footprints-container {
        flex-direction: column; 
    }

    .footprint-item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .app-banner {
        height: 200px;
        padding: 20px;
        align-items: flex-start;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-links-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .logo-column {
        text-align: center;
    }
}