/**
Theme Name: Firefly Cinemas
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: firefly-cinemas
Template: astra
*/

:root {
    --ff-bg-dark: #080d14;
    --ff-bg-primary: #0d1b2a;
    --ff-bg-card: #111827;
    --ff-bg-card-hover: #162238;
    --ff-bg-card-alt: #162032;
    --ff-gold: #c9a84c;
    --ff-gold-light: #E9B949;
    --ff-gold-glow: rgba(233, 185, 73, 0.35);
    --ff-text: #f0ede6;
    --ff-text-muted: #94a3b8;
    --ff-text-light: #cbd5e1;
    --ff-accent-coral: #ff5f5f;
    --ff-accent-teal: #00d4c8;
    --ff-border: rgba(255, 255, 255, 0.1);
    --ff-border-gold: rgba(233, 185, 73, 0.35);
    --ff-font-title: 'Cinzel', serif;
    --ff-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ff-font-romantic: 'Playfair Display', Georgia, serif;
    --ff-container: 1280px;
    --ff-radius: 20px;
    --ff-radius-lg: 28px;
    --ff-transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Typography */
body {
    background-color: var(--ff-bg-primary);
    color: var(--ff-text);
    font-family: var(--ff-font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-font-title);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
}

.ff-container {
    max-width: var(--ff-container);
    margin: 0 auto;
    padding: 0 24px;
}

.ff-section {
    padding: 90px 0;
    position: relative;
}

.ff-section-darker {
    background-color: #09121d;
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================================== */
.ff-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(233, 185, 73, 0.2);
}

.ff-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.ff-logo img {
    height: 48px;
    width: auto;
    transition: transform var(--ff-transition);
}
.ff-logo:hover img {
    transform: scale(1.04);
}

.ff-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ff-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.ff-nav-list a {
    color: var(--ff-text);
    font-family: var(--ff-font-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.ff-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--ff-gold);
    transition: width var(--ff-transition);
}

.ff-nav-list a:hover,
.ff-nav-list .current-menu-item > a {
    color: var(--ff-gold-light);
}

.ff-nav-list a:hover::after,
.ff-nav-list .current-menu-item > a::after {
    width: 100%;
}

.ff-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ff-gold);
    color: #111 !important;
    font-family: var(--ff-font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--ff-transition);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.ff-header-cta:hover {
    background: #ffffff;
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* Mobile Toggle */
.ff-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.ff-mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--ff-gold);
    transition: 0.3s;
}

.ff-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #09121d;
    border-left: 1px solid var(--ff-border-gold);
    padding: 100px 30px 40px;
    z-index: 1050;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
}

.ff-mobile-drawer.active {
    right: 0;
}

.ff-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1040;
}
.ff-mobile-overlay.active {
    display: block;
}

.ff-mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ff-mobile-nav a {
    font-family: var(--ff-font-title);
    font-size: 18px;
    color: var(--ff-text);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .ff-nav-desktop, .ff-header-cta { display: none; }
    .ff-mobile-toggle { display: flex; }
    .ff-mobile-drawer { display: flex; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.ff-hero {
    position: relative;
    padding: 130px 0 90px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 65%),
                linear-gradient(180deg, #0d1b2a 0%, #080e18 100%);
    overflow: hidden;
}

.ff-hero-tag {
    display: inline-block;
    color: var(--ff-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(233, 185, 73, 0.08);
    border: 1px solid rgba(233, 185, 73, 0.25);
    border-radius: 50px;
}

.ff-hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    max-width: 980px;
    margin: 0 auto;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.ff-hero-romantic {
    font-family: var(--ff-font-romantic);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--ff-gold-light);
    margin: 16px 0 32px;
    text-shadow: 0 2px 20px var(--ff-gold-glow);
}

.ff-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ff-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--ff-transition);
}

.ff-btn-primary {
    background: var(--ff-gold);
    color: #111 !important;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}
.ff-btn-primary:hover {
    background: #ffffff;
    color: #111 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.35);
}

.ff-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    backdrop-filter: blur(8px);
}
.ff-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   VIDEO EMBED SECTION ("Watch the Experience")
   ========================================================================== */
.ff-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--ff-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--ff-border-gold);
    aspect-ratio: 16 / 9;
    background: #000;
}

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

/* ==========================================================================
   CARDS, CAROUSELS, AND EXISTING GRID
   ========================================================================== */
.vt-events-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.vt-event-card{
    border-radius:28px;
    overflow:hidden;
    background:#111827;
    position:relative;
    transition:.4s;
}

.vt-event-card:hover{
    transform:translateY(-12px);
    box-shadow: 0 20px 50px rgb(255 95 95 / 35%);
}

.vt-event-card a{
    text-decoration:none;
    color:#fff;
}

.vt-image-wrap{
    position:relative;
    overflow:hidden;
    height:420px;
}

.vt-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.vt-event-card:hover img{
    transform:scale(1.12);
}

.vt-gradient{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.8) 100%
    );
}

.vt-date-badge{
    position:absolute;
    top:20px;
    left:20px;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 16px;
    border-radius:50px;
    font-weight:600;
}

.vt-featured{
    position:absolute;
    top:20px;
    right:20px;
    background:#7c3aed;
    color:#fff;
    padding:10px 16px;
    border-radius:50px;
    font-size:13px;
}

.vt-content{
    padding:24px;
}

.vt-content h3{
    color:#fff;
    margin:0 0 10px;
    font-size:28px;
    line-height:1.2;
}

.vt-subtitle{
    color:#cbd5e1;
    margin-bottom:20px;
}

.vt-meta{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#94a3b8;
    margin-bottom:20px;
}

.vt-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#ff5f5f;
}

/* Swiper Carousel */
.ff-events-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:40px;
}

.ff-small-title{
    display:inline-block;
    color:#E9B949;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
    margin-bottom:12px;
}

.ff-events-header h2{
    margin:0;
    color:#fff;
    font-size: clamp(32px, 4vw, 56px);
    line-height:1.1;
    font-weight:700;
}

.ff-events-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.ff-view-all{
    color:#fff;
    font-size:16px;
    transition:.3s;
}
.ff-view-all:hover{
    color:#E9B949;
}

.ff-nav{
    display:flex;
    gap:12px;
}

.ff-prev,
.ff-next{
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    cursor:pointer;
    transition:.35s;
}

.ff-prev:hover,
.ff-next:hover{
    background:#E9B949;
    color:#000;
    border-color:#E9B949;
}

.ff-events-slider{
    overflow:visible;
    padding-bottom:10px;
}

.ff-events-slider .swiper-wrapper{
    align-items:stretch;
}

.ff-events-slider .swiper-slide{
    display:flex;
    height:auto;
}

.ff-card{
    width:100%;
    display:flex;
    flex-direction:column;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    background:#111;
    transition:transform .35s ease;
}

.ff-card:hover{
    transform:translateY(-8px);
}

.ff-card a{
    display:block;
    color:#fff;
}

.ff-image{
    position:relative;
    height:520px;
    overflow:hidden;
}

.ff-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.ff-card:hover img{
    transform:scale(1.08);
}

.ff-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.95) 10%,
        rgba(0,0,0,.70) 35%,
        rgba(0,0,0,.15) 60%,
        transparent 100%
    );
}

.ff-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#E9B949;
    color:#111;
    font-weight:700;
    border-radius:30px;
    padding:8px 16px;
    font-size:12px;
    z-index:5;
}

.ff-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:20px 18px;
    z-index:3;
}

.ff-content h3{
    color:#fff;
    font-size:22px;
    margin:0 0 4px;
    line-height:1.2;
}

.ff-date{
    color:#E9B949;
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
}

.ff-meta{
    color:rgba(255,255,255,.82);
    font-size:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom:20px;
}

.ff-bottom{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-bottom:14px;
}

.ff-price{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.ff-book{
    width:100%;
    text-align:center;
    background:#E9B949;
    color:#111;
    font-weight:700;
    border-radius:999px;
    padding:8px 15px;
    transition:.35s;
}

.ff-card:hover .ff-book{
    background:#fff;
}

/* ==========================================================================
   EQUIPMENT TABLE, REVIEWS, FAQS, MEMBERSHIP & PARTNERS
   ========================================================================== */
.ff-romantic-hook {
    font-family: var(--ff-font-romantic);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(24px, 4vw, 36px);
    color: #E9B949;
    margin: 12px 0 24px;
    display: inline-block;
    text-shadow: 0 2px 14px var(--ff-gold-glow);
}

.ff-indoor-notice-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(233, 185, 73, 0.08);
    border: 1px solid rgba(233, 185, 73, 0.25);
    border-radius: 50px;
    padding: 12px 24px;
    color: #f0ede6;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    margin: 20px auto;
    max-width: 650px;
}

.ff-equipment-wrap {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.ff-equipment-header { margin-bottom: 24px; }
.ff-equipment-header h3 { color: #fff; font-size: 26px; margin: 0 0 8px; }
.ff-equipment-header .ff-strapline { color: #E9B949; font-size: 15px; font-weight: 600; }
.ff-equipment-table { width: 100%; border-collapse: separate; border-spacing: 0; color: #f0ede6; font-size: 15px; }
.ff-equipment-table th { background: rgba(255, 255, 255, 0.05); color: #E9B949; padding: 14px 18px; text-align: left; font-weight: 700; border-bottom: 1px solid rgba(233, 185, 73, 0.3); }
.ff-equipment-table td { padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.ff-equipment-table tr:hover td { background: rgba(233, 185, 73, 0.04); }
.ff-equipment-price { font-weight: 700; color: #E9B949; }
.ff-equipment-insurance { margin-top: 20px; padding: 12px 18px; background: rgba(233, 185, 73, 0.08); border-left: 3px solid #E9B949; border-radius: 6px; color: #cbd5e1; font-size: 14px; }

@media(max-width: 767px) {
    .ff-equipment-wrap { padding: 20px 16px; }
    .ff-equipment-table, .ff-equipment-table tbody, .ff-equipment-table tr, .ff-equipment-table td { display: block; width: 100%; }
    .ff-equipment-table thead { display: none; }
    .ff-equipment-table tr { margin-bottom: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 14px; }
    .ff-equipment-table td { padding: 6px 0; border-bottom: none; }
}

.ff-membership-banner {
    background: linear-gradient(135deg, #162032 0%, #0d131f 100%);
    border: 1px solid rgba(233, 185, 73, 0.35);
    border-radius: 28px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.ff-membership-badge { display: inline-block; background: #E9B949; color: #111; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.ff-membership-banner h3 { color: #fff; font-size: 32px; margin: 0 0 12px; }
.ff-membership-banner p { color: #cbd5e1; font-size: 16px; max-width: 600px; margin-bottom: 24px; }
.ff-membership-form { display: flex; gap: 12px; max-width: 480px; }
.ff-membership-form input[type="email"] { flex: 1; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 12px 20px; color: #fff; font-size: 15px; outline: none; }
.ff-membership-form button { background: #E9B949; color: #111; font-weight: 700; border: none; border-radius: 50px; padding: 12px 24px; cursor: pointer; }

.ff-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 30px; }
.ff-review-card { background: #111827; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.ff-review-stars { color: #E9B949; font-size: 18px; margin-bottom: 12px; }
.ff-review-text { color: #cbd5e1; font-size: 15px; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.ff-reviewer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 14px; }
.ff-fb-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(24, 119, 242, 0.12); border: 1px solid rgba(24, 119, 242, 0.35); color: #fff; padding: 12px 26px; border-radius: 50px; font-weight: 600; }

.ff-faq-wrap { max-width: 800px; margin: 40px auto; }
.ff-faq-item { background: #111827; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
.ff-faq-item.active { border-color: rgba(233, 185, 73, 0.4); }
.ff-faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #fff; font-weight: 600; font-size: 17px; }
.ff-faq-icon { font-size: 20px; color: #E9B949; transition: transform .3s; }
.ff-faq-item.active .ff-faq-icon { transform: rotate(45deg); }
.ff-faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; color: #cbd5e1; font-size: 15px; }
.ff-faq-item.active .ff-faq-answer { max-height: 400px; padding: 0 24px 20px; }

.ff-partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 30px 0; }
.ff-partner-card { background: #111827; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 22px; }
.ff-partner-num { color: #E9B949; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.ff-partner-title { color: #fff; font-size: 16px; font-weight: 600; margin: 0; }
.ff-past-partners-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.ff-partner-pill { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50px; padding: 10px 20px; color: #f0ede6; font-size: 14px; }
.ff-partner-pill.ff-charity-highlight { background: rgba(233, 185, 73, 0.12); border-color: #E9B949; color: #fff; font-weight: 700; }

.ff-whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff !important; font-weight: 700; font-size: 15px; padding: 12px 24px; border-radius: 50px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.ff-whatsapp-btn:hover { background: #20BA5A; transform: translateY(-2px); }

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.ff-footer {
    background: #070d14;
    border-top: 1px solid rgba(233, 185, 73, 0.2);
    padding: 80px 0 30px;
}

.ff-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ff-footer-brand p {
    color: var(--ff-text-muted);
    font-size: 14px;
    margin-top: 18px;
    line-height: 1.6;
    max-width: 300px;
}

.ff-footer-col h4 {
    color: var(--ff-gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ff-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ff-footer-col ul a {
    color: var(--ff-text-light);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--ff-transition);
}

.ff-footer-col ul a:hover {
    color: var(--ff-gold-light);
    transform: translateX(4px);
}

.ff-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--ff-text-muted);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.ff-footer-legal {
    display: flex;
    gap: 20px;
}
.ff-footer-legal a {
    color: var(--ff-text-muted);
}
.ff-footer-legal a:hover {
    color: var(--ff-gold);
}

@media (max-width: 1024px) {
    .ff-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
    .ff-footer-grid { grid-template-columns: 1fr; }
    .ff-footer-bottom { flex-direction: column; text-align: center; }
}
