/**
 * Homepage Styles — Aerial Media
 * Flat design, no gradients
 */

/* Tour Card Component Styles */
.tour-card-premium {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.tour-card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-premium:hover .tour-card-image {
    transform: scale(1.05);
}

/* Enhanced card hover micro-interactions */
.tour-card-premium .tour-card-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card-premium:hover .tour-card-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

.tour-card-premium .tour-card-title {
    transition: color 0.3s ease;
}

.tour-card-premium:hover .tour-card-title {
    color: #2563EB;
}

.tour-card-premium .btn-aerial-primary {
    transition: all 0.3s ease;
}

.tour-card-premium:hover .btn-aerial-primary {
    background: #1E40AF;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.tour-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: #F59E0B;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.tour-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563EB;
    margin-bottom: 0.5rem;
}

.tour-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tour-card-description {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
    margin-top: auto;
}

.tour-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.tour-card-price-label {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Button Styles */
.btn-aerial-primary {
    background: #2563EB;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-aerial-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-aerial-outline {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: 2px solid white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-aerial-outline:hover {
    background: white;
    color: #2563EB;
}

/* Hero Title Override */
.hero-aerial .hero-title {
    font-size: clamp(2.2rem, 5.8vw, 5rem) !important;
}

/* Section Header Component Styles */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.85rem, 3.75vw, 2.6rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

/* Feature Card Component Styles */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-card__description {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Hero Section */
.hero-aerial {
    position: relative;
}

.hero-aerial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.hero-aerial-content {
    padding: 0 2rem;
}

/* Prominent CTA button */
.btn-aerial-primary-hero {
    background: #2563EB;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-aerial-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
    background: #1E40AF;
}

/* Scroll indicator */
.scroll-indicator {
    animation: gentleBounce 2.5s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* Stats Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 1s ease-out;
}

.overlay-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Tour Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}
