/* Travel Website Styles - SkyWings Style */

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)),
        url('./images/adds.png') center/cover,
        url('./images/p1.jpg') bottom right / 50% no-repeat,
        linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-blend-mode: overlay, normal, multiply;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 20%;
    right: 10%;
    max-width: 250px;
}

.floating-card h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.floating-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.hero-thumbnails {
    position: absolute;
    bottom: 20%;
    left: 10%;
    display: flex;
    gap: 1rem;
}

.hero-thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: #f8f9fa;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background: white;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
    background: white;
}

.destination-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.destination-info p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.rating {
    background: #ffd700;
    color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.process h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card.highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.step-card p {
    margin: 0;
    color: inherit;
    opacity: 0.8;
}

/* Promotion Section */
.promotion {
    padding: 6rem 0;
    background: white;
}

.promotion-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promotion-image {
    flex: 1;
}

.promotion-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promotion-text {
    flex: 1;
}

.promotion-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promotion-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.promotion-text .btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.promotion-text .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-thumbnails {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }

    .floating-card {
        position: static;
        margin: 2rem auto 0;
    }

    .partners-grid {
        gap: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 300px;
    }

    .promotion-content {
        flex-direction: column;
        gap: 2rem;
    }

    .promotion-text h2 {
        font-size: 2rem;
    }
}