* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background-color: #1a1a1a;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #d4af37;
    font-size: 24px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080?text=Ticketing') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.experience-hero {
    height: 60vh;
    background: url('https://via.placeholder.com/1920x1080?text=Experiences') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay,
.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content,
.experience-content {
    position: relative;
    z-index: 1;
}

.hero h1,
.experience-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p,
.experience-hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #b8932d;
    transform: scale(1.05);
}

.featured {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.featured h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.destination-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff; /* Ensure base text color is white for readability */
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.destination-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4af37; /* Gold accent for destination name */
}

.destination-card p {
    font-size: 16px;
    color: #866b66; /* Brighter off-white for better readability */
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.card-link:hover {
    color: #fff;
}

.highlights {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.highlights h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.highlight-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.highlight-card p {
    font-size: 16px;
    color: #666;
}

.experience-details {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.experience-item {
    max-width: 600px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.experience-item:hover {
    transform: translateY(-10px);
}

.experience-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-text {
    padding: 20px;
    text-align: left;
}

.experience-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.experience-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.content {
    min-height: 100vh;
    padding-bottom: 60px;
    padding-top: 80px; /* Space for the fixed navbar */
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    max-width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #d4af37;
    outline: none;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.feedback {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    min-height: 20px;
    color: #fff;
}

.contact-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.contact-card a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #fff;
    text-decoration: underline;
}

.cta-text {
    font-size: 1rem;
    color: #d4af37;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Ticketing Page Styles */
.ticketing-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ticketing-info-container .contact-card {
    max-width: 600px;
}

/* New Chatbot Styles */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-height: 450px;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background-color: #d4af37;
    padding: 0.8rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header select {
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-size: 0.9rem;
}

.chat-body {
    padding: 1rem;
    max-height: 350px;
    overflow-y: auto;
}

.chat-message {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-bubble {
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 70%;
    font-size: 0.9rem;
}

.chat-bubble.bot {
    background-color: #333;
    color: #fff;
}

.chat-bubble.user {
    background-color: #d4af37;
    color: #1a1a1a;
}

.chat-options {
    margin: 0.5rem 0;
}

.chat-option {
    color: #d4af37;
    cursor: pointer;
    display: block;
    padding: 0.5rem;
    transition: background-color 0.2s ease;
}

.chat-option:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.typing {
    font-style: italic;
    color: #888;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    bottom: 0;
    clear: both;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .hero,
    .experience-hero {
        height: 50vh;
    }

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

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

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .destination-grid,
    .highlight-grid,
    .experience-container,
    .contact-container,
    .ticketing-info-container {
        flex-direction: column;
        gap: 20px;
    }

    .destination-card,
    .highlight-card,
    .experience-item,
    .contact-form-container,
    .contact-info-container,
    .ticketing-info-container .contact-card {
        width: 100%;
        padding: 15px;
    }

    .card-image,
    .experience-image {
        height: 150px;
    }

    .destination-card h3,
    .highlight-card h3,
    .experience-text h2,
    .contact-form h2,
    .contact-card h2 {
        font-size: 20px;
    }

    .destination-card p,
    .highlight-card p,
    .experience-text p,
    .contact-card p,
    .cta-text {
        font-size: 14px;
    }

    .content {
        padding-top: 60px; /* Adjust for mobile navbar height */
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.5rem;
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .chat-button {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .chat-window {
        width: 280px;
        bottom: 70px;
        right: 10px;
        max-height: 350px;
    }

    .chat-header {
        font-size: 1rem;
    }

    .chat-header select {
        font-size: 0.8rem;
    }

    .chat-bubble {
        font-size: 0.8rem;
    }

    .chat-option {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .featured,
    .highlights,
    .experience-details {
        padding: 40px 10px;
    }

    .featured h2,
    .highlights h2,
    .experience-details h2 {
        font-size: 28px;
    }
}