/* Magical Trip Style Layout for wins */

/* Hero Section - Full height with centered content */
.hero-magical {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px;
}

.hero-magical .hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-magical .hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-magical .hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Tour Category Cards Grid */
.tour-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.tour-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.tour-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.tour-category-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.tour-category-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.tour-category-btn {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: var(--color-primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.tour-category-btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Why Choose Section */
.why-choose {
    background: var(--color-bg-secondary);
    padding: 80px 20px;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-icon i {
    font-size: 48px;
    color: var(--color-primary);
}

.why-choose-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.why-choose-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Video Gallery Grid */
.video-gallery {
    padding: 80px 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: scale(1.05);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Guides Section */
.guides-section {
    background: var(--color-bg-secondary);
    padding: 80px 20px;
    text-align: center;
}

.guides-content {
    max-width: 800px;
    margin: 0 auto;
}

.guides-cta {
    margin-top: 40px;
}

/* Recommended Logos */
.recommended-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.recommended-logo-item {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-primary);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.recommended-logo-item:hover {
    transform: translateY(-5px);
}

.recommended-logo-item i {
    font-size: 36px;
    color: var(--color-primary);
}

/* Large Section Title */
.section-title-large {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.section-subtitle-large {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-magical .hero-title {
        font-size: 36px;
    }
    
    .hero-magical .hero-subtitle {
        font-size: 16px;
    }
    
    .tour-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-category-card {
        height: 280px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-large {
        font-size: 32px;
    }
    
    .section-subtitle-large {
        font-size: 16px;
    }
}
