/* Custom CSS for the new Homepage matching the design */
:root {
    --primary-color: #1b1b1b;
    --secondary-color: #242424;
    --accent-color: #f1a942;
    --text-muted: #888888;
    --text-white: #ffffff;
    --dark-bg: #111111;
    --darker-bg: #1a1a1a;
    --border-dark: #2a2a2a;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    background-color: var(--dark-bg);
    margin: 0;
    padding: 0;
}

.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
}

.bg-darker {
    background-color: var(--darker-bg);
}

.border-top-dark {
    border-top: 1px solid var(--border-dark);
}

/* Navbar overrides */
.navbar {
    background-color: #da581e !important;
}

.navbar .nav-link, 
.navbar .navbar-brand, 
.navbar .logo h2, 
.navbar .logo span,
.navbar-right .text p,
.navbar-right .text h5 a,
.navbar-right .icon i,
.navbar-toggler-icon i {
    color: #ffffff !important;
}

.navbar .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Section */
.header.slider-fade {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.header.slider-fade .owl-carousel,
.header.slider-fade .owl-stage-outer,
.header.slider-fade .owl-stage,
.header.slider-fade .owl-item,
.header.slider-fade .item {
    height: 100%;
}

.header.slider-fade .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header.slider-fade .caption {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--text-white);
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    color: #cccccc;
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
}

.hero-right .brand-text {
    color: var(--text-white);
    font-size: 1.2rem;
    letter-spacing: 5px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* About Section */
.about-section {
    background-color: #f9f9f9;
    color: #333;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.video-placeholder {
    width: 100%;
    height: 350px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #aaa;
    border-radius: 4px;
}

/* Products Section */
.products-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-white);
    font-weight: 600;
    text-align: center;
}

/* Map Section */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-text {
    z-index: 2;
}

.highlight-number {
    color: var(--accent-color) !important;
}

/* Showcase Section */
.showcase-section {
    background-color: #ffffff;
}

.showcase-section h2 {
    color: #111;
    font-size: 2.5rem;
    font-weight: 600;
}

.showcase-section img {
    height: 160px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Video Section */
.video-card img {
    height: 200px;
    object-fit: cover;
}

.play-overlay {
    transition: background 0.3s ease;
    cursor: pointer;
}

.play-overlay:hover {
    background: rgba(0,0,0,0.3) !important;
}

.video-title {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding-top: 30px;
}

/* Articles Section */
.article-card {
    border: 1px solid var(--border-dark);
    transition: border-color 0.3s ease;
}

.article-card:hover {
    border-color: var(--accent-color);
}

.quote-icon {
    line-height: 1;
}

/* Reviews */
.reviews-section .stars {
    letter-spacing: 2px;
}

/* Why choose us */
.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.icon-circle {
    box-shadow: 0 0 15px rgba(241, 169, 66, 0.3);
}

/* Utility Overrides */
.text-warning {
    color: var(--accent-color) !important;
}
.bg-warning {
    background-color: var(--accent-color) !important;
}
