/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}



.bell-btn i {
    font-size: 18px;
    color: #333;
}

.profile-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #8b5a9e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* Main */
main {
    background-color: #fef8f9;
}

.main-section {
    background-color: #A65A8A0F;
}

.main-container {
    padding: 40px 50px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 48px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.2;
}

.section-title span {
    color: #8b5a9e;
}

.booking-form {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.location-input-wrapper {
    flex: 1;
}

.location-label {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.location-input {
    width: 100%;
    font-size: 14px;
    color: #333;
    background: #e0e0e0;
    outline: none;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    padding: 12px 14px;
    border-radius: 8px;
}

.location-input::placeholder {
    color: #999;
}

.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.datetime-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

.datetime-field i {
    color: #666;
    font-size: 14px;
}

.datetime-input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    flex: 1;
    background: transparent;
}

.dropdown-arrow {
    font-size: 14px;
    color: #666;
}

.see-prices-btn {
    width: 100%;
    padding: 14px;
    background-color: #8b5a9e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.see-prices-btn:hover {
    background-color: #7a4f8c;
}

.location-section {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.location-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.location-icon {
    font-size: 48px;
    color: #8b5a9e;
    margin-bottom: 20px;
}

.location-text {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.get-location-btn {
    padding: 12px 24px;
    background-color: #8b5a9e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-location-btn:hover {
    background-color: #7a4f8c;
}

/* Account & Activity Section */
.activity-section {
    max-width: 1800px;
    padding: 40px 50px;
}

.activity-header {
    margin-bottom: 30px;
}

.activity-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    font-weight: 500;
}

.map-btn {
    border: 1px solid #e0e0e0;
    padding: 6px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background-color: #f5f5f5;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    position: relative;
    height: 180px;
    background-color: #f5f5f5;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.see-details-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.card-date {
    font-size: 14px;
    color: #666;
}

.card-price {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-top: 8px;
}

/* List View (Right Column) */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.list-thumb {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

.list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.list-info {
    flex: 1;
}

.list-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.list-price {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.list-btn {
    padding: 6px 15px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    color: #333;
    cursor: pointer;
    font-weight: 600;
}

.section-app {
    background-color: #f6f6f6;
}

/* App Download Section */
.app-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 50px;
}

.app-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    margin-left: 280px;
}

.app-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.app-text h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 700;
    text-align: left;
}

.app-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    text-align: left;
}

.arrow {
    font-size: 24px;
    color: #8b5a9e;
}

/* Footer */
.footer-section {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 50px 30px;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-logo {
    margin-bottom: 15px;
}

.footer-brand img {
    height: 40px;
}

.brand-description {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #555;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
}

.copyright {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-container {
        gap: 40px;
    }

    .section-title {
        font-size: 42px;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-list {
        grid-column: 1 / -1;
        margin-top: 20px;
    }

    .app-title {
        margin-left: 200px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 15px 30px;
    }

    .main-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .location-section {
        height: 300px;
        order: -1;
    }

    .activity-section {
        padding: 30px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .app-section {
        padding: 30px;
    }

    .app-title {
        margin-left: 0;
        text-align: center;
    }

    .app-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 40px 30px 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .right-section {
        margin-left: auto;
    }

    .main-container {
        padding: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .booking-form {
        padding: 20px;
    }

    .datetime-grid {
        grid-template-columns: 1fr;
    }

    .activity-section {
        padding: 20px;
    }

    .activity-header {
        margin-bottom: 20px;
    }

    .activity-title {
        font-size: 22px;
    }

    .app-section {
        padding: 20px;
    }

    .app-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .app-text h3,
    .app-text p {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 30px 20px 15px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 32px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .right-section {
        gap: 15px;
    }

    .language-switcher {
        padding: 4px;
    }

    .lang-btn {
        padding: 4px 12px;
        font-size: 11px;
    }

    .profile-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .section-title {
        font-size: 30px;
    }

    .location-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .location-row i {
        align-self: flex-start;
    }

    .location-label {
        font-size: 14px;
    }

    .location-input {
        padding: 10px 12px;
    }

    .datetime-field {
        padding: 8px 10px;
    }

    .see-prices-btn {
        padding: 12px;
        font-size: 14px;
    }

    .activity-title {
        font-size: 20px;
    }

    .card-image-wrapper {
        height: 150px;
    }

    .card-title {
        font-size: 15px;
    }

    .list-item {
        padding: 12px;
    }

    .list-thumb {
        width: 40px;
        height: 40px;
    }

    .app-title {
        font-size: 24px;
    }

    .app-item {
        padding: 15px 20px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .brand-description {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .right-section {
        gap: 10px;
    }

    .language-switcher {
        display: none;
    }

    .section-title {
        font-size: 26px;
    }

    .booking-form {
        padding: 15px;
    }

    .card-content {
        padding: 12px;
    }

    .list-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .list-info {
        width: 100%;
    }
}