/* Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #000000;
    line-height: 1.2;
}

.nav-buttons-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
}

.nav-link {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn-primary {
    background: #0070F0;
    color: white;
    padding: 14px 22px;
    border-radius: 1000px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.35px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0051D5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1200px;
    -webkit-mask-image: url("../images/paris-mask.14554a20a082.svg");
    mask-image: url("../images/paris-mask.14554a20a082.svg");
    -webkit-mask-size: 3520px 2560px;
    mask-size: 3520px 2560px;
    -webkit-mask-position: -480px -1280px;
    mask-position: -480px -1280px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.8;
    background-image: url("../images/paris-background.085dfae7f948.jpeg");
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
    padding-bottom: 160px;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #000000;
    letter-spacing: -3.84px;
    max-width: 53%;
    text-align: left;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    text-align: center;
    background: #FFFFFF;
}

.value-prop-text-wrapper {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.value-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1.8px;
    color: #000000;
    max-width: 794px;
    margin: 0;
}

.highlight-blue {
    font-family: 'DM Sans', sans-serif;
    color: #0070F0;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    letter-spacing: -1.8px;
    max-width: 794px;
    margin: 0;
    text-align: center;
}

.brand-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1.8px;
    color: #000000;
    margin-bottom: 40px;
    padding-top: 80px;
}

.brand-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 160px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -6.4px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.brand-cheap {
    color: #17AD00;
}

.brand-voyage {
    color: #0070F0;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: #FFFFFF;
    width: 100%;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.feature-card {
    flex: 1 1 0;
    min-width: 265px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #E9E9E9;
    padding: 40px 40px 40px 0;
}

.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.54px;
    color: #000000;
    margin: 0;
}

.feature-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.075px;
    color: #6F6F6F;
    margin: 0;
}

/* Overview Section */
.overview {
    padding: 40px 0 80px;
    background: #FFFFFF;
}

.overview-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.overview-text {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-top: 1px solid #E9E9E9;
    padding: 60px 80px 80px 0;
}

.overview-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1.8px;
    color: #000000;
    margin: 0;
}

.overview-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.075px;
    color: #6F6F6F;
    margin: 0;
}

.overview-list {
    display: flex;
    flex-direction: column;
}

.overview-list-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border-top: 1px solid #E9E9E9;
    padding: 20px 80px 20px 0;
}

.list-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.075px;
    color: #6F6F6F;
    flex-shrink: 0;
}

.overview-list-item p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.075px;
    color: #000000;
    margin: 0;
    flex: 1;
}

.overview-images {
    flex: 1 1 0;
    min-width: 0;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-card-preview {
    width: 100%;
    max-width: 590px;
    height: auto;
    border-radius: 14px;
}

/* Final CTA */
.final-cta {
    padding: 40px 0 120px;
    background: #FFFFFF;
}

.cta-content {
    border-top: 1px solid #929292;
    padding: 80px 240px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1.8px;
    color: #000000;
    text-align: center;
    max-width: 590px;
    margin: 0;
}

/* Footer */
.footer {
    background: #FFFFFF;
    border-top: 1px solid #E9E9E9;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.footer-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.12px;
    color: #000000;
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.footer-rights {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.12px;
    color: #000000;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 64px;
        letter-spacing: -2.56px;
        max-width: 80%;
    }
    
    .value-prop-text-wrapper {
        padding: 40px 0;
        gap: 30px;
    }
    
    .value-text {
        font-size: 36px;
        letter-spacing: -1.08px;
        max-width: 90%;
    }
    
    .highlight-blue {
        font-size: 36px;
        letter-spacing: -1.08px;
        max-width: 90%;
    }
    
    .brand-intro {
        font-size: 36px;
        letter-spacing: -1.08px;
        padding-top: 40px;
    }
    
    .brand-name {
        font-size: 80px;
        letter-spacing: -3.2px;
        max-width: 90%;
        padding-bottom: 60px;
    }
    
    .overview-content {
        flex-direction: column;
    }
    
    .overview-text {
        padding-right: 0;
    }
    
    .overview-title {
        font-size: 36px;
        letter-spacing: -1.08px;
    }
    
    .overview-list-item {
        padding-right: 0;
    }
    
    .cta-content {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 36px;
        letter-spacing: -1.08px;
        max-width: 100%;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .feature-card {
        min-width: 100%;
        padding-right: 0;
    }
    
    .container,
    .nav-container,
    .hero-content {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .nav-buttons-pill {
        position: static;
        transform: none;
        margin-left: auto;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: -1.92px;
        max-width: 90%;
    }
    
    .value-prop-text-wrapper {
        padding: 20px 0;
        gap: 20px;
    }
    
    .value-text {
        font-size: 28px;
        letter-spacing: -0.84px;
        max-width: 95%;
    }
    
    .highlight-blue {
        font-size: 28px;
        letter-spacing: -0.84px;
        max-width: 95%;
    }
    
    .brand-intro {
        font-size: 28px;
        letter-spacing: -0.84px;
        padding-top: 20px;
    }
    
    .brand-name {
        font-size: 56px;
        letter-spacing: -2.24px;
        max-width: 95%;
        padding-bottom: 40px;
    }
    
    .overview-content {
        flex-direction: column;
    }
    
    .overview-text {
        padding-right: 0;
        padding: 40px 0 40px 0;
    }
    
    .overview-title {
        font-size: 28px;
        letter-spacing: -0.84px;
    }
    
    .overview-list-item {
        padding-right: 0;
        padding: 15px 0;
        gap: 20px;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 28px;
        letter-spacing: -0.84px;
        max-width: 100%;
    }
    
    .nav-buttons-pill {
        flex-direction: column;
        padding: 2px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .footer-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

