/* ===================================================
   HOME.CSS — hero + teaser strip, loaded on index.html only
=================================================== */
.home-section {
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: var(--header-height) 0 3rem;
}

.home-section .background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.home-section .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.home-section .shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 70%, transparent 100%);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.home-section .shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 70%, transparent 100%);
    bottom: -150px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.home-section .shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 70%, transparent 100%);
    top: 40%;
    left: 30%;
    animation: float 18s ease-in-out infinite 5s;
}

.home-content-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.home-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-animation {
    font-family: var(--font-cursive);
    font-size: 4.5rem;
    line-height: 1.2;
    letter-spacing: 4px;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.title-animation span {
    color: var(--first-color);
    display: block;
    font-size: 5.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
}

.subtitle-animation {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease-out;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease-out;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: var(--first-color);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--first-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--first-color);
}

.hero-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    min-height: 58px;
}

.hero-location-link:hover {
    transform: translateY(-5px);
    border-color: var(--first-color);
    background: rgba(212, 175, 55, 0.08);
}

.hero-location-note {
    color: var(--first-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
}

.hero-location-link img {
    display: block;
    width: 132px;
    height: auto;
}

@keyframes shimmer {
    0% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    }

    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
}

/* ---------- Teaser strip: quick links to other pages ---------- */
.teaser-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.teaser-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--white-color);
}

.teaser-card i {
    font-size: 2rem;
    color: var(--first-color);
    margin-bottom: 1rem;
}

.teaser-card h3 {
    font-size: var(--h3-font-size);
    color: var(--first-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.teaser-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.teaser-card:hover {
    transform: translateY(-8px);
    border-color: var(--first-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 992px) {
    .title-animation {
        font-size: 3.5rem;
    }

    .title-animation span {
        font-size: 4.5rem;
    }

    .teaser-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .title-animation {
        font-size: 3rem;
    }

    .title-animation span {
        font-size: 3.5rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .hero-location-link {
        width: 100%;
        max-width: 320px;
    }

    .hero-location-link {
        justify-content: center;
        padding: 0.85rem 1rem;
    }

    .hero-location-link img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .home-content-container {
        padding: 0 1rem;
    }

    .title-animation {
        font-size: 2.5rem;
    }

    .title-animation span {
        font-size: 3rem;
    }

    .subtitle-animation {
        font-size: 1rem;
    }

    .cta-container {
        width: 100%;
        gap: 0.85rem;
    }

    .btn-primary,
    .btn-secondary,
    .hero-location-link {
        width: min(100%, 360px);
        max-width: 360px;
    }

    .hero-location-link {
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
        min-height: 104px;
        padding: 0.9rem 1rem 0.8rem;
        border-radius: 32px;
        text-align: center;
    }

    .hero-location-note {
        width: 100%;
        white-space: normal;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.25;
        letter-spacing: 0.9px;
    }

    .hero-location-link img {
        width: 126px;
        max-width: 46vw;
        margin: 0 auto;
    }

    .teaser-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .hero-location-link {
        min-height: 96px;
        padding: 0.75rem 0.85rem;
    }

    .hero-location-note {
        font-size: 0.72rem;
    }

    .hero-location-link img {
        width: 112px;
    }
}
