/* ==========================================
   HERO - ONLINE IMAGE
========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

/* ✅ HERO IMAGE FROM ONLINE URL */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ✅ FALLBACK - If image fails, use gradient */
.hero-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-section:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    padding: 0 40px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #e74c3c;
    font-style: italic;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(60deg);
    animation: letterReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #c0392b;
    color: #fff;
}

.btn-primary:hover {
    background: #a93226;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.3);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2.5s infinite;
    z-index: 2;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes fadeSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes letterReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 991px) {
    .hero-title { font-size: 52px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-container { padding: 0 20px; }
}