/*
=========================================
  INFERNO ANIMATION STUDIO - STYLESHEET
=========================================
*/

:root {
    --color-black: #050505;
    --color-dark: #121212;
    --color-darker: #0a0a0a;
    --color-red: #0098ff;
    --color-red-hover: #006ab1;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --sidebar-width: 280px;
}

/* Base Settings */
body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-darker);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-red);
}

/* Typography Utilities */
.text-red { color: var(--color-red) !important; }
.text-gray { color: var(--color-gray) !important; }
.bg-black { background-color: var(--color-black) !important; }
.bg-darker { background-color: var(--color-darker) !important; }
.bg-red { background-color: var(--color-red) !important; }
.fw-black { font-weight: 900 !important; }
.tracking-wide { letter-spacing: 2px; }
.tracking-wider { letter-spacing: 4px; }
.fs-7 { font-size: 0.8rem; }
.shadow-text { text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.shadow-red { box-shadow: 0 0 15px rgba(0, 152, 255, 0.4); }

/* Layout & Sidebar */
.main-wrapper {
    min-height: 100vh;
    padding-top: 70px; /* Account for the fixed top header on all devices */
}
.sidebar {
    background-color: var(--color-dark) !important;
    width: var(--sidebar-width);
    z-index: 1055;
    border-right: 1px solid rgba(0, 152, 255, 0.2);
}
.content-area {
    margin-left: 0;
    transition: margin-left 0.3s ease;
    width: 100%;
}

/* Premium Top Header */
.top-header {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 152, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Menu Toggle Button */
.btn-menu-toggle {
    background: transparent;
    /*border: 1px solid rgba(0, 152, 255, 0.3) !important;*/
    border-radius: 50px;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
}
/*.btn-menu-toggle:hover {
    background: rgba(0, 152, 255, 0.1);
    border-color: var(--color-red) !important;
    box-shadow: 0 0 10px rgba(0, 152, 255, 0.3);
}*/

/* Breadcrumbs Styling */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0, 152, 255, 0.5) !important;
    content: "/" !important;
    font-weight: bold;
}
.breadcrumb-item a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumb-item.active {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.breadcrumb-item.active:hover {
    color: var(--color-red) !important;
}
.cursor-pointer {
    cursor: pointer !important;
}

/* Sidebar Navigation Items */
.sidebar-nav .nav-link {
    color: var(--color-gray);
    font-weight: 500;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}
.sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active {
    color: var(--color-white);
    background-color: rgba(0,152,255,0.1);
}
.sidebar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #5c2000;
}

/* Buttons */
.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    transition: all 0.3s ease;
}
.btn-red:hover {
    background-color: var(--color-red-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 152, 255, 0.5);
}
.btn-outline-danger {
    color: var(--color-red);
    border-color: var(--color-red);
    transition: all 0.3s ease;
}
.btn-outline-danger:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(0, 152, 255, 0.5);
}

/* Hero Section */
#hero {
    background-color: var(--color-black);
    border-top: 4px solid #5c2000;
    border-bottom: 4px solid #5c2000;
}
.hero-bg {
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    /*filter: brightness(0.3) contrast(1.2) grayscale(0.5);*/
	filter: brightness(0.7);
    z-index: 0;
}
.vw-60 { max-width: 600px; }

/* About Section Glare */
.red-glare {
  background: linear-gradient(
  45deg,
  rgba(0,152,255,0.3) 0%,
  transparent 50%
);
    pointer-events: none;
}

/* Image Gallery */
.gallery-img {
    height: 300px;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}
.gallery-overlay {
    background-color: rgba(0, 152, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Video Gallery */
.video-item {
    border-color: var(--color-darker) !important;
}
.video-thumb {
    height: 350px;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}
.video-item:hover .video-thumb {
    transform: scale(1.05);
    filter: brightness(1);
}
.play-btn {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}
.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 25px rgba(0,152,255,0.8);
}

/* Padding utilities */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
li.breadcrumb-item.active.text-white.cursor-pointer {
    display: none;
}
.sec-color{
	background-color: #5c2000;
}
.text-sec {
    color: #5c2000 !important;
}
.hometext {
    font-weight: bold;
    color: #fff !important;
}

/* ==========================
   FOOTER
========================== */

.footer-section{
    background-color:var(--color-darker);
    border-top:1px solid rgba(0,152,255,0.15);
}

.footer-logo{
    max-width:220px;
    height:auto;
}

.footer-text{
    color:var(--color-gray);
    line-height:1.8;
}

.footer-heading{
    color:#fff;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-nav li{
    margin-bottom:12px;
}

.footer-nav a{
    color:var(--color-gray);
    text-decoration:none;
    transition:0.3s;
}

.footer-nav a:hover{
    color:var(--color-white);
}

.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.footer-social a{
    color:var(--color-gray);
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    color:var(--color-white);
}

.footer-gif{
    max-width:190px;
    width:100%;
    height:auto;

    display:block;
    margin:auto;
}

.footer-divider{
    border-color:rgba(255,255,255,0.08);
}

.copyright-text{
    color:var(--color-gray);
}

@media(max-width:991px){

    .footer-section{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-logo{
        margin-left:auto;
        margin-right:auto;
        display:block;
    }
}
/* ==========================
   ABOUT PAGE IMAGE CONTROL
========================== */

.about-image-wrapper{
    max-width:100%;
}

/* Main Image Size Control */
.about-image-wrapper img{

    /* IMAGE HEIGHT CONTROL */
    height:320px !important;

    width:100%;
    object-fit:cover;

    transition:0.5s;
}

/* Hover Effect */
.about-image-wrapper:hover img{
    transform:scale(1.03);
}

/* Large Desktop */
@media(min-width:1400px){

    .about-image-wrapper img{
        height:350px !important;
    }

}

/* Tablet & Mobile */
@media(max-width:991px){

    .about-image-wrapper img{
        height:280px !important;
    }

}
/* Center Footer Navigation Column */

.footer-section .col-lg-4:nth-child(2){
    text-align:center;
}

.footer-nav{
    text-align:center;
    padding-left:0;
}

.footer-nav li{
    text-align:center;
}
