/*
Theme Name: Axis Film Studio Bespoke Theme
Theme URI: https://axisfilmstudio.com
Author: Axis Film Studio Developer
Author URI: https://axisfilmstudio.com
Description: Bespoke premium luxury dark theme built for Axis Film Studio. Engineered with raw semantic HTML, Tailwind-inspired layouts, and fluid interactions.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: axis-film-studio
*/

/* Reset & Luxury Base Styles */
html {
    scroll-behavior: smooth;
    background-color: #050505;
    color: #f5f5f5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #050505;
    color: #eaeaea;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Glassmorphism Accents */
.glass-panel {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel:hover {
    border-color: rgba(249, 115, 22, 0.2); /* Subtle Orange Glow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

/* Custom Orange Gradient & Texts */
.text-orange-glow {
    color: #f97316;
    text-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #ea580c 0%, #ffedd5 25%, #f97316 50%, #ffedd5 75%, #c2410c 100%);
}

.btn-luxury {
    position: relative;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    background: #ffffff;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: #000;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.btn-secondary-luxury {
    padding: 11px 27px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-luxury:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* WordPress Active Menu Item Styling */
nav .current-menu-item > a,
nav .current_page_item > a,
nav .current-menu-ancestor > a {
    color: #ff5500 !important;
    font-weight: 700 !important;
}

