/* ============================================================
   ROYAL HERITAGE THEME - EXPLORE STYLES
   ============================================================ */

.explore-body {
    background-color: var(--bg-color);
    color: var(--text-dark);
}

/* ========================================= */
/* AMBIENT BACKGROUND                        */
/* ========================================= */

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 { top: 20%; left: -10%; width: 50vw; height: 50vw; background: var(--primary); }
.orb-2 { bottom: 10%; right: -10%; width: 60vw; height: 60vw; background: var(--ruby); }

.mouse-orb {
    position: absolute;
    top: 0; left: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s;
}

/* ========================================= */
/* PAGE WRAPPER & HEADER                     */
/* ========================================= */

.explore-wrapper {
    padding: 120px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.explore-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-main {
    font-size: 3.5rem;
    color: var(--primary);
}

.header-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================= */
/* FILTERS                                   */
/* ========================================= */

.explore-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26,8,8,0.6);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* ========================================= */
/* SPOT CARDS                                */
/* ========================================= */

.spot-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background: rgba(26, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

.spot-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212,175,55,0.1);
    pointer-events: none;
    border-radius: 10px;
}

.spot-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* ========================================= */
/* IMAGE CONTAINER                           */
/* ========================================= */

.spot-img-container {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #0C0404;
}

.spot-img-inner {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 10s ease;
}

.spot-img-inner::after {
    background:
        linear-gradient(180deg, transparent, rgba(12, 4, 4, 0.42)),
        radial-gradient(circle at 50% 20%, rgba(244, 211, 122, 0.16), transparent 45%);
    content: "";
    inset: 0;
    position: absolute;
}

.spot-img-inner i {
    display: none;
}

.spot-card:hover .spot-img-inner {
    transform: scale(1.05);
}

/* ========================================= */
/* INFO SECTION                              */
/* ========================================= */

.spot-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.spot-category {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.spot-info h2,
.spot-info h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.spot-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.action-link i {
    transition: transform 0.3s ease;
}

.action-link:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.15);
}

.action-link:hover i {
    transform: translateX(5px);
}

/* ========================================= */
/* RESPONSIVE                                */
/* ========================================= */

@media (max-width: 900px) {
    .spot-card, .spot-card:nth-child(even) {
        flex-direction: column;
        gap: 0;
    }
    
    .spot-img-container {
        width: 100%;
        height: 300px;
    }
    
    .spot-info {
        padding: 30px;
    }

    .spot-info h2,
    .spot-info h3 {
        font-size: 1.75rem;
    }
    
    .header-main { font-size: 2.8rem; }
    
    .explore-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}
