/*
Theme Name: Aerial Cinematography Theme
Theme URI: https://axiomaerials.com
Author: Your Name
Author URI: https://axiomaerials.com
Description: Custom theme for aerial cinematography company
Version: 1.0
License: GPL v2 or later
Text Domain: aerial-cinema
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    text-align: center;
    padding: 30px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
}
/* Add to your existing style.css */

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 40px 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-title {
    margin-bottom: 15px;
}

.post-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
}

.post-title a:hover {
    color: #ff6b35;
}

.post-excerpt {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.read-more:hover {
    background: #ff5722;
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pagination .current {
    background: #ff6b35;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-posts p {
    color: #ccc;
}

/* --- Header: centred transparent nav --- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background .35s ease;
}

#site-header.transparent-nav {
    background: transparent;
}

#site-header.scrolled {
    background: #000;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.primary-nav .nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.primary-nav .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: .5px;
    transition: color .3s ease;
}

.primary-nav .nav-menu a:hover {
    color: #ff6b35;
}

/* --- minor responsive tweak --- */
@media (max-width: 600px) {
    .primary-nav .nav-menu {
        gap: 20px;
    }
}