/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bohemian Color Palette */
    --boho-orange: #FF8A5B;
    --boho-coral: #EA5455;
    --boho-pink: #F78FA7;
    --boho-purple: #B084CC;
    --boho-blue: #87CEEB;
    --boho-green: #7FB069;
    --boho-sage: #A8DADC;
    --boho-sand: #F4E4BC;
    --boho-terracotta: #D4A574;
    --boho-cream: #FFF8E7;
    
    /* Text Colors */
    --text-primary: #5D4E75;
    --text-secondary: #8B7B8B;
    --text-light: #A8A8A8;
    --text-white: #FFFFFF;
    
    /* Background & Utility */
    --bg-gradient: linear-gradient(135deg, var(--boho-cream) 0%, var(--boho-sand) 50%, var(--boho-sage) 100%);
    --shadow-soft: 0 10px 30px rgba(93, 78, 117, 0.1);
    --shadow-medium: 0 15px 40px rgba(93, 78, 117, 0.15);
    --border-radius: 25px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #5D4E75;
    background: linear-gradient(135deg, #FFF8E7 0%, #F4E4BC 50%, #A8DADC 100%);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Sky and Background Elements */
.sky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cloud {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 20s infinite linear;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cloud-1 {
    top: 15%;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.cloud-2 {
    top: 25%;
    left: -100px;
    animation-delay: -8s;
    animation-duration: 30s;
}

.cloud-3 {
    top: 10%;
    left: -100px;
    animation-delay: -15s;
    animation-duration: 35s;
}

.plane {
    position: absolute;
    top: 20%;
    left: -100px;
    font-size: 1.5rem;
    animation: flyAcross 40s infinite linear;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

@keyframes float {
    from { transform: translateX(-100px); }
    to { transform: translateX(calc(100vw + 100px)); }
}

@keyframes flyAcross {
    0% { transform: translateX(-100px) translateY(0px); }
    25% { transform: translateX(25vw) translateY(-20px); }
    50% { transform: translateX(50vw) translateY(10px); }
    75% { transform: translateX(75vw) translateY(-15px); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(0px); }
}

/* Main Landing Page */
.landing-page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin: 2rem 0 3rem;
    position: relative;
}

.custom-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    animation: logoFloat 6s ease-in-out infinite;
}

.logo-text {
    text-align: center;
}

.logo-main {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, #B084CC 0%, #EA5455 50%, #F78FA7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    position: relative;
    font-weight: 400;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #8B7B8B;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
}

.logo-decoration {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 1.5rem;
    animation: sparkle 2s infinite ease-in-out;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(1deg); 
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

/* Trail Container */
.trail-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 2rem 0;
}

.trail-path {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Travel Scenes */
.travel-scene {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.scene-1 {
    top: 60%;
    left: 8%;
}

.scene-2 {
    top: 30%;
    left: 25%;
}

.scene-3 {
    top: 10%;
    left: 45%;
}

.scene-4 {
    top: 40%;
    left: 65%;
}

.scene-5 {
    top: 15%;
    left: 85%;
}

/* Bus Scene */
.bus {
    position: relative;
    animation: busMove 3s ease-in-out infinite;
}

.bus-body {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.bus-wheels {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.wheel {
    font-size: 0.8rem;
    animation: spin 1s linear infinite;
}

@keyframes busMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Train and other transport */
.train {
    font-size: 2rem;
    animation: trainMove 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes trainMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-8px); }
}

/* Campsite */
.campsite {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tent, .campfire {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.flag {
    font-size: 1.2rem;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Travelers */
.travelers {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.traveler {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.traveler:nth-child(2) {
    animation-delay: 0.2s;
}

.traveler:nth-child(3) {
    animation-delay: 0.4s;
}

.selfie {
    animation: selfie 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes selfie {
    0%, 90%, 100% { transform: translateY(0px) rotate(0deg); }
    45% { transform: translateY(-2px) rotate(-10deg); }
}

/* Landmarks */
.mountains, .beach, .palm-tree, .city {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Content Section */
.content-section {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.tagline h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #EA5455;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #8B7B8B;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.coming-soon {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #B084CC;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #F78FA7, #B084CC);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* CTA Section */
.cta-section {
    margin: 3rem 0;
}

.notify-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    background: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(93, 78, 117, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid rgba(176, 132, 204, 0.2);
}

#email-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #5D4E75;
    font-family: 'Poppins', sans-serif;
}

#email-input::placeholder {
    color: #A8A8A8;
}

.notify-btn {
    background: linear-gradient(135deg, #EA5455, #F78FA7);
    color: #FFFFFF;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(234, 84, 85, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 84, 85, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

.btn-icon {
    animation: sparkle 1.5s ease-in-out infinite;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #A8A8A8;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-message.success {
    background: linear-gradient(135deg, #7FB069, #A8DADC);
    color: #FFFFFF;
    opacity: 1;
}

.form-message.error {
    background: linear-gradient(135deg, #EA5455, #F78FA7);
    color: #FFFFFF;
    opacity: 1;
}

/* Features Preview */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5D4E75;
    text-align: center;
}

/* Social Proof */
.social-proof {
    margin: 4rem 0 2rem;
    text-align: center;
}

.interest-text {
    font-size: 1.1rem;
    color: #8B7B8B;
    margin-bottom: 1.5rem;
}

.highlight {
    font-weight: 700;
    color: #EA5455;
    font-size: 1.3rem;
}

.avatar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -5px;
    flex-wrap: wrap;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: -8px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avatar:hover {
    transform: translateY(-3px);
    z-index: 10;
}

.avatar.more {
    background: linear-gradient(135deg, #B084CC, #F78FA7);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Simple Footer */
.simple-footer {
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(93, 78, 117, 0.1);
}

.simple-footer p {
    color: #8B7B8B;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-page {
        padding: 1rem 0.5rem;
    }
    
    .logo-section {
        margin: 1rem 0 2rem;
    }
    
    .logo-svg {
        max-width: 280px;
    }
    
    .logo-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .logo-subtitle {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
        letter-spacing: 1px;
    }
    
    .trail-container {
        height: 350px;
        margin: 1rem 0;
    }
    
    .travel-scene {
        transform: scale(0.8);
    }
    
    .scene-1 { top: 65%; left: 5%; }
    .scene-2 { top: 35%; left: 20%; }
    .scene-3 { top: 15%; left: 40%; }
    .scene-4 { top: 45%; left: 60%; }
    .scene-5 { top: 20%; left: 80%; }
    
    .content-section {
        margin: 2rem auto;
    }
    
    .features-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    #email-input {
        border-radius: 20px 20px 0 0;
        text-align: center;
    }
    
    .notify-btn {
        border-radius: 0 0 20px 20px;
        justify-content: center;
    }
    
    .avatar-group {
        gap: 0;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-left: -5px;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        max-width: 250px;
    }
    
    .logo-main {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .logo-decoration {
        right: -10px;
        font-size: 1.2rem;
    }
    
    .trail-container {
        height: 280px;
    }
    
    .travel-scene {
        transform: scale(0.6);
    }
    
    .bus-body, .train, .tent, .campfire, .mountains, .beach, .palm-tree, .city {
        font-size: 1.5rem;
    }
    
    .traveler {
        font-size: 1rem;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .cloud, .plane {
        font-size: 1.5rem;
    }
    
    .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-left: -3px;
    }
    
    .avatar.more {
        font-size: 0.7rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-page > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.logo-section { animation-delay: 0.1s; }
.trail-container { animation-delay: 0.3s; }
.content-section { animation-delay: 0.5s; }
.social-proof { animation-delay: 0.7s; }
.simple-footer { animation-delay: 0.9s; }