/* =========================================
   GLOBAL STYLES & THEME
   ========================================= */
   body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; 
    background-color: #121416; 
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #1a1d21;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2e35;
}

nav .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
}

nav ul li a:hover {
    color: #f04e30;
}

/* =========================================
   HERO SECTION (FIXED BANNER)
   ========================================= */
.hero {
    position: relative;
    height: 60vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* FIX: Added default image so other pages aren't black */
    background: url("images/hero.jpg") center/cover no-repeat;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.hero-text button {
    padding: 12px 30px;
    background: #f04e30;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* =========================================
   SERVICE CARDS (INDEX PAGE)
   ========================================= */
.services {
    padding: 80px 10%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 250px; 
    color: white;
    padding: 20px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0;
    font-size: 1.1rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.service-card.engagement { background-image: url('images/engagement.jpg'); }
.service-card.realestate { background-image: url('images/realestate.jpg'); }
.service-card.drone { background-image: url('images/drone.jpg'); }
.service-card.headshots { background-image: url('images/headshots.jpg'); }
.service-card.live { background-image: url('images/live.jpg'); }
.service-card.holiday { background-image: url('images/holiday.jpg'); }

/* =========================================
   PORTFOLIO & VIDEO GRIDS
   ========================================= */
.portfolio-grid, .video-grid {
    padding: 60px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.portfolio-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(240, 78, 48, 0.85);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* FIX: This allows clicks to pass through the button to the thumbnail trigger */
    pointer-events: none; 
}

/* =========================================
   LIGHTBOX & POPUPS
   ========================================= */
.lightbox, #video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.lightbox img {
    /* FIX: Kept the working size so they aren't huge */
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

/* BIG ARROWS */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 70px; 
    color: #fff;
    cursor: pointer;
    padding: 30px;
    user-select: none;
    z-index: 100001;
    transition: 0.2s;
}

.lightbox-prev:hover, .lightbox-next:hover { color: #f04e30; }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.video-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
}

/* =========================================
   CONTACT CARD
   ========================================= */
.contact-card {
    background: #1a1d21;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    margin: 80px auto;
    border: 1px solid #2a2e35;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-item { margin-bottom: 20px; }
.contact-item strong { display: block; color: #888; font-size: 0.8rem; letter-spacing: 1px; }
.contact-item a { font-size: 1.4rem; font-weight: 500; }
.contact-item a:hover { color: #f04e30; }

footer {
    text-align: center;
    padding: 50px;
    color: #555;
    background: #0a0b0c;
}
/* Individual Page Banners */































/* Home Page */
.hero-index { background-image: url('images/home-hero.jpg'); }

/* Drone Page */
.hero-drone { background-image: url('images/drone-hero.jpg'); }

/* Real Estate Page */
.hero-realestate { background-image: url('images/realestate-hero.jpg'); }

/* Headshots Page */
.hero-headshots { background-image: url('images/headshots-hero.jpg'); }

/* Engagement/Family Page */
.hero-engagement { background-image: url('images/engagement-hero.jpg'); }

/* Family Page */
.hero-holiday { background-image: url('images/holiday-hero.jpg'); }


/* Live Performance Page */
.hero-live { background-image: url('images/live-hero.jpg');
    background-position: center 15%;
}

/* LOGO IMAGE STYLING */
.logo img {
    height: 50px; /* Adjust this number to make your logo taller or shorter */
    width: auto;  /* Keeps the logo from looking stretched */
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Slight pop when you hover over the logo */
.logo img:hover {
    transform: scale(1.05);
}

/* Adjust nav padding if the logo feels too tight */
nav {
    padding: 15px 10%; 
}
/* FORCE LOGO VISIBILITY */
.logo {
    display: flex !important;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block !important;
    height: 60px; /* Force a height so it's not 0px */
    width: auto;
    min-width: 50px; /* Ensures it has some width */
}