:root {
    --primary-color: #fc7420; /* Updated Orange */
    --primary-dark: #c05818;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-muted: #666666;
    --background-color: #ffffff;
    --gray-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --font-heading: 'Jost', sans-serif; /* Consistently use Jost as found in main.css */
    --font-body: 'Roboto', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    --box-shadow-hover: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Utilities */
.text-primary-custom { color: var(--primary-color) !important; }
.bg-gray { background-color: var(--gray-bg); }
.shadow-custom { box-shadow: var(--box-shadow); }
.rounded-custom { border-radius: var(--border-radius); }

/* Header */
/* Header */
/* Header */
header#overlay {
    background: rgba(255, 255, 255, 0.95); /* Match bg-solid */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0; /* Match tighter padding */
    position: fixed; /* Match fixed */
    top: 0;
    z-index: 1030;
    width: 100%;
    transition: all 0.5s ease;
}

/* Add padding to body to prevent overlap */
body {
    padding-top: 80px;
}

/* Logo Text Adjustment to match bg-solid logic if needed */
.logo .text h1 {
    color: #000;
}
.logo .text h2 {
    color: #000;
}


/* Hero Section */
.hero-section {
    margin-top: 30px;
}

.main-headline {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.main-headline:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-2px);
}

.main-headline img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-headline:hover img {
    transform: scale(1.02);
}

.headline-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
    color: white;
    padding: 30px;
}

.headline-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.headline-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    max-width: 800px;
    margin-bottom: 0;
}

/* Sidebar Headlines */
.side-headlines h4 {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item {
    transition: var(--transition);
    padding: 10px;
    border-radius: var(--border-radius);
}

.news-item:hover {
    background-color: var(--gray-bg);
}

.news-item h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.news-item small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Cards */
.card-custom {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    background: white;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card-img-custom {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-body-custom {
    padding: 20px;
}

.card-title-custom {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-text-custom {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Video Gallery */
.video-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}


/* Responsive Burger Menu */
@media (max-width: 991.98px) {
    .cage-nav {
        display: flex !important;
        z-index: 1040;
        margin-left: auto;
    }
}

.cage-nav .navTrigger i {
    background-color: #000 !important; /* Force Black for visibility */
}

/* Swiper Override */
.swiper-slide {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.headline-image-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.headline-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.headline-image-container:hover img {
    transform: scale(1.02);
}

.headline-image-container:hover {
    box-shadow: var(--box-shadow-hover);
}

/* Preloader Styles */
.preloader-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preloader {
    text-align: center;
}

.loader-progress {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Page Header Redesign */
.header-page {
    position: relative;
    height: 450px; /* Taller banner */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    margin-bottom: 50px;
}

.header-page .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.header-page .container {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.header-content .breadcrumb-item,
.header-content .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-content .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
}

.header-content .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.header-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "/";
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-page {
        height: 300px;
    }
    .header-content h1 {
        font-size: 2rem;
    }
}
