/* public/css/landing.css */
body {
    margin: 0;
    font-family: Roboto, sans-serif;
    background: #0b0018;
    color: white;
    padding-left: 64pt;
    padding-right: 64pt;
}

header {
    padding-top: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

nav .menu-icon {
    display: none;
    cursor: pointer;
}

nav .menu-icon svg {
    width: 24px; /* Set width */
    height: 24px; /* Set height */
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.content {

    flex-grow: 1; /* Ensure content takes up available space */
    flex-shrink: 0; /* Prevent content from shrinking */
    flex-basis: 0; /* Allow content to grow or shrink */
    min-width: 0; /* Prevent overflow of content */
    display: flex;
    flex-direction: column;
    gap: 64pt;
}

.content-wrapper {
    display: flex;
    gap: 20px; /* Space between content and sidebar */
    padding-top: 64pt;
    min-width: 80%;
}

.visa-status {
    margin-top: 20px;
}

.visa-required, .visa-not-required {
    padding: 15px;
    border-radius: 8px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.visa-required {
    background-color: #e74c3c; /* Red for required */
}

.visa-not-required {
    background-color: #2ecc71; /* Green for not required */
}


.sidebar-section {
    width: 150px;
    margin-left: 20px;
}

.sidebar-section h2 {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 10px;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    text-decoration: underline;
}

.sidebar-section ul li {
    margin-bottom: 8px;
}

.sidebar-section ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 200;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #a64ac9, #6200ea);
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background: #ff0075;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 40px;
}

.art-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero .art,
.hero .main-art {
    position: absolute;
    border-radius: 10px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
}

.hero .art1 {
    top: 50px;
    left: 30%;
    width: 100px;
    height: 100px;
}

.hero .art2 {
    top: 100px;
    right: 30%;
    width: 100px;
    height: 100px;
}

.hero .art3 {
    bottom: 50px;
    left: 20%;
    width: 100px;
    height: 100px;
}

.hero .art4 {
    bottom: 50px;
    right: 20%;
    width: 100px;
    height: 100px;
}

.hero .main-art {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px 20px;
    background: #0f021e;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 36px;
    margin: 0;
}

.stat p {
    font-size: 18px;
    margin: 10px 0 0;
}

.concept {
    text-align: center;
    padding: 50px 20px;
}

.concept h2 {
    font-size: 36px;
}

.concept h3 {
    font-size: 24px;
    color: #a64ac9;
}

.concept p {
    font-size: 18px;
    margin: 20px 0;
}

.concept button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background: #ff0075;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.features {
    text-align: center;
    padding: 50px 20px;
    background: #0f021e;
}

.features h2 {
    font-size: 36px;
}

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

.features li {
    font-size: 18px;
    margin: 10px 0;
}

.booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 50px 20px;*/
}

.booking-text {

    max-width: 50%;
    line-height: 26pt;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.booking-text h3 {
    font-size: 24px;
    color: #ffd700;
}

.booking-image {
    max-width: 40%;
}

.booking-image img {
    width: 100%;
    border-radius: 10px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
}

.compete {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compete-text {
    max-width: 50%;
    text-align: right;
    line-height: 26pt;
}

.compete-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.compete-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.compete-text h3 {
    font-size: 24px;
    color: #ffd700;
}

.compete-image {
    max-width: 40%;
}

.compete-image img {
    width: 100%;
    border-radius: 10px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
}

footer {
    text-align: center;
    padding: 20px;
    background: #0b0018;
}

.qr-code-section {
    display: none; /* Hide by default */
    padding: 0;
    text-align: center; /* Center text */
}

.qr-code-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-image img {
    width: 200pt; /* Adjust size as needed */
    border-radius: 10px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
}

.download-app-button-section {
    display: none; /* Hide by default */
    padding: 50px 20px;
    text-align: center; /* Center text */
}

.cta-section {
    text-align: center;
    padding: 50px 20px;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-section .download-links a {
    color: white;
    text-decoration: underline;
    margin: 0 10px;
    font-weight: 600;
}

.cta-section .download-links a:hover {
    color: #ffd700; /* Highlight color on hover */
}


/* Media query to show the QR code section only on desktop devices */
@media (max-width: 480pt) {
    .download-app-button-section {
        display: block; /* Show on desktop */
    }
}

.typing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: white;
}

.typing-text {
    max-width: 100%;
}

.typing-text h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: normal;
}

.typing-text h1 {
    font-size: 48px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
    margin-top: 8pt;
}

.typing-image {
    max-width: 40%;
    text-align: right;
}

.typing-image img {
    width: 100%;
}

#typed-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    font-size: 48px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

a {
    color: #a64ac9; /* Base color for the link */
    text-decoration: none; /* Remove underline by default */
    font-weight: 400; /* Make the link text bold */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth transition for hover effects */
}

a:hover {
    color: #ff4d9b; /* Slightly lighter color on hover */
    text-shadow: 0 0 5px rgba(255, 0, 117, 0.5); /* Add a subtle glow effect */
    text-decoration: underline; /* Optionally, add underline on hover */
}

a:active {
    color: #e60063; /* Darker color when active */
}

a:focus {
    outline: none; /* Remove default focus outline */
    text-shadow: 0 0 8px rgba(255, 0, 117, 0.7); /* Enhanced glow when focused */
}

.trip-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trip-image-container img {
    max-width: 100%;
    height: auto;
}

/* Adjust booking and compete sections for mobile */
@media (max-width: 768px) {

    body {
        padding-left: 32pt;
        padding-right: 32pt;
    }
    .content {
        gap: 16pt;
    }

    .booking, .compete {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
        padding: 0;
    }

    .booking-text, .compete-text {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .booking-image, .compete-image {
        max-width: 100%;
        margin: 0 auto 20px auto; /* Center the image and add margin below it */
        order: 2; /* Ensure images appear after the text */
    }

    .booking-text, .compete-text {
        order: 1; /* Ensure text appears before the image */
    }

    .booking-text h2, .compete-text h2 {
        font-size: 28px;
    }

    .booking-text p, .compete-text p {
        font-size: 16px;
    }

    .booking-text h3, .compete-text h3 {
        font-size: 20px;
    }

    .booking-image img, .compete-image img {
        max-width: 70%; /* Reduce the width of the images to 70% of their container */
        height: auto;   /* Ensure the height adjusts automatically to maintain aspect ratio */
        margin: 0 auto; /* Center the images horizontally */
    }

    nav .menu-icon {
        display: block; /* Show the hamburger menu on mobile */
        padding: 5px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #0b0018; /* Match background color */
        border-radius: 5px;
        padding: 10px;
        display: none; /* Initially hide the menu */
    }

    nav ul.show {
        display: flex; /* Show the menu when toggled */
    }

    nav ul li {
        display: block;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .qr-code-section {
        display: none; /* Hide QR code section on mobile */
    }

    .download-app-button-section {
        display: block; /* Show App Store button on mobile */
        text-align: center; /* Center the button */
        padding: 20px 0; /* Add some padding for spacing */
    }

    .download-app-button img {
        max-width: 200px; /* Adjust the size of the App Store button */
        width: 80%; /* Responsive width */
        height: auto; /* Maintain aspect ratio */
    }
}

/* Show QR code and hide App Store button on desktop */
@media (min-width: 769px) {
    .download-app-button-section {
        display: none; /* Hide App Store button on desktop */
    }

    .qr-code-section {
        display: flex; /* Show QR code section on desktop */
        justify-content: center; /* Center the QR code */
        flex-direction: column;
        gap: 16pt;
        padding-top: 32pt;
    }
}

