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

body {
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7f5af0;
    display: flex;
    align-items: center;
}

.header-logo {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(127, 90, 240, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212121;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 500px;
}

.hero-highlight {
    color: #7f5af0;
}

/* App Screenshot */
.app-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(127, 90, 240, 0.5) 0%,
        rgba(127, 90, 240, 0) 70%
    );
    top: 0;
    left: 0;
    opacity: 0.7;
    filter: blur(40px);
    z-index: 1;
}

/* Email Form */
.email-form {
    margin-top: 40px;
}

.email-input-group {
    display: flex;
    max-width: 500px;
    height: 60px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 0 20px;
    border: none;
    border-radius: 15px 0 0 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.email-submit {
    padding: 0 30px;
    background-color: #7f5af0;
    color: white;
    border: none;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-submit:hover {
    background-color: #6a48d7;
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.8rem !important;
    color: #888 !important;
    max-width: 500px;
}

/* Destination Cards Section */
.destinations {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #212121;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cards-container {
    position: relative;
    padding: 20px 0;
}

.destination-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 0 20px;
}

.destination-card {
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px 0 rgba(31, 38, 135, 0.2);
}

.destination-image {
    height: 200px;
    background-position: center;
    background-size: cover;
}

.destination-info {
    padding: 20px;
}

.destination-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #212121;
}

.destination-date {
    color: white;
    background-color: #ff6969;
    border-radius: 7px;
    padding: 1px 5px;
    font-size: 0.7rem;
    font-weight: 500;
}

.destination-location {
    color: white;
    background-color: #69a0ff;
    border-radius: 7px;
    padding: 1px 5px;
    font-size: 0.7rem;
    font-weight: 500;
}

.destination-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.destination-details {
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    align-items: center;
    margin-bottom: 13px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-control {
    background-color: rgba(127, 90, 240, 0.1);
    color: #7f5af0;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background-color: rgba(127, 90, 240, 0.2);
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(127, 90, 240, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #7f5af0;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #212121;
}

.feature-description {
    color: #666;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #212121;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7f5af0;
    margin-bottom: 20px;
}

.footer-info p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #7f5af0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #7f5af0;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Success message for email submission */
.success-message {
    display: none;
    background-color: rgba(76, 175, 80, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    animation: fadeIn 0.5s;
    max-width: 500px;
}

#successMessageCarousel {
    margin-top: 0px !important;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .email-input-group {
        margin: 0 auto 15px;
    }

    .privacy-note {
        text-align: center;
        margin: 0 auto;
    }

    .app-screenshot {
        max-width: 300px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .email-input-group {
        flex-direction: column;
        height: auto;
    }

    .email-input {
        border-radius: 15px;
        margin-bottom: 10px;
        padding: 15px 20px;
    }

    .email-submit {
        border-radius: 15px;
        padding: 15px 20px;
    }
}

.cta-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10% 10%;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
    text-align: center;
}

.cta-description {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.cta-privacy-note {
    margin-bottom: 0;
    font-size: 0.5rem !important;
    text-align: center;
}

.cta-wrapper {
    .email-input-group {
        flex-direction: column;
        height: auto;
    }

    .email-input {
        border-radius: 15px;
        margin-bottom: 10px;
        padding: 15px 20px;
    }

    .email-submit {
        border-radius: 15px;
        padding: 15px 20px;
    }
}
