/**
 * Agency Theme Styles
 * Modern ve profesyonel ajans teması için özel stiller
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
    --primary-color: #000000;
    --secondary-color: #6f42c1;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.5;
    
    /* Spacing */
    --spacer: 1rem;
    --section-padding: 5rem 0;
    
    /* Border */
    --border-radius: 0.375rem;
    --border-width: 1px;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   Layout
   ========================================================================== */

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-color);
    background-color: var(--white);
}

/* Slider başlık stili */
.slider-baslik {
    line-height: 1;
}

/* Mobilde slider başlığının navbar altında kalmaması için */
/* Mobile Responsive Design */
@media (max-width: 991.98px) {
    /* Tablet Responsive */
    body {
        padding-top: 70px;
    }
    
    .hero-section,
    .carousel-item {
        min-height: 350px !important;
        padding-top: 10px;
        padding-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    /* Split Slider Tablet Responsive */
    .hero-split-section {
        padding-top: 70px;
    }
    
    .hero-split-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-split-section .row {
        margin: 0;
    }
    
    .hero-split-section .col-lg-6 {
        padding: 0 15px;
    }
}

.section {
    padding: var(--section-padding);
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

/* ==========================================================================
   Navbar Styles
   ========================================================================== */

.navbar {
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
   
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar.navbar-solid {
    box-shadow: var(--shadow-sm);
}

.navbar.navbar-solid.scrolled {
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    position: relative;
    color: var(--text-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
    border: none;
    background: none;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px);
}

.navbar-nav .dropdown-item i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.navbar-nav .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown animasyonu */
.navbar-nav .dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.navbar-nav .dropdown.show .dropdown-menu,
.navbar-nav .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Mobile dropdown override */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding-left: 1rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9rem;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        transform: none;
    }
    
    .navbar-nav .dropdown-divider {
        display: none;
    }
}

/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */

.hero-carousel {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fullscreen slider için özel düzenlemeler */
.hero-carousel.fullscreen {
    height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

.hero-section.fullscreen {
    height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

/* Fixed navbar offset - body'ye hiç padding-top eklenmez */

/* Masaüstünde hero sections normal pozisyonda */
.fixed-navbar-offset .hero-carousel,
.fixed-navbar-offset .hero-section {
    margin-top: 0;
    padding-top: 0;
}

/* Masaüstünde carousel caption normal pozisyonda */
.fixed-navbar-offset .carousel-caption {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    height: auto;
    display: block !important;
    padding-top: 0;
}

/* Mobilde JavaScript tarafından override edilecek olan stilleri tanımla */
@media (max-width: 991.98px) {
    .fixed-navbar-offset .carousel-caption {
        /* JavaScript tarafından ayarlanacak */
        position: absolute;
        top: 0;
        bottom: auto;
        left: 1rem;
        right: 1rem;
        transform: none;
        height: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.carousel-item {
    
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    bottom: 40%;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 800px;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.carousel-caption .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
    animation: fadeInUp 1s ease 0.4s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: var(--transition-base);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 0.3rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: var(--transition-fast);
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease;
}

.animate-zoomIn {
    animation: zoomIn 0.8s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Cards & Components
   ========================================================================== */

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
}

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

.card-img-top {
    transition: var(--transition-base);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

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

.btn-primary {
    background: rgb(132, 49, 255);
    border: none;
    
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));

}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgb(237 242 250);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption {
        bottom: 30%;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .carousel-caption h1,
    .slider-baslik {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .carousel-caption {
        bottom: 25%;
        left: 1rem;
        right: 1rem;
        transform: none;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
    
    /* Navbar mobil iyileştirmeleri */
    .navbar {
        padding: 0.75rem 0 !important;
        min-height: 70px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Split Slider Mobile Responsive */
    .hero-split-section {
        padding-top: 60px !important;
        padding-bottom: 1rem !important;
        min-height: auto !important;
    }
    
    .hero-split-section .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .hero-split-section .row {
        margin: 0 !important;
    }
    
    .hero-split-section .col-lg-6 {
        padding: 0 10px !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }
    
    .hero-split-section .slider-baslik {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-split-section .lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-split-section .btn-lg {
        width: 70% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .split-slider-container {
        margin-top: 1rem !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .split-slider-image {
        max-height: 250px !important;
        width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption h1,
    .slider-baslik {
        font-size: 1.75rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    
    .carousel-caption p {
        font-size: 0.9rem !important;
        line-height: 1.3;
        margin-bottom: 1.5rem !important;
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .carousel-caption {
        bottom: 15%;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }
    
    .hero-carousel {
        min-height: 500px;
    }
    
    /* Küçük ekranlarda navbar */
    .navbar {
        padding: 0.5rem 0 !important;
        min-height: 60px !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-brand img {
        max-height: 55px !important;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    
    /* Hero section küçük ekranlarda */
    .hero-section,
    .hero-carousel,
    #splitSlider {
        padding-top: 60px !important;
    }
    
    .hero-carousel .carousel-item {
        padding-top: 60px !important;
        min-height: calc(100vh - 60px) !important;
    }
    
    .carousel-item {
        min-height: 500px;
    }
    
    /* Split Slider Extra Small Screen */
    .hero-split-section .slider-baslik {
        font-size: 1.5rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-split-section .lead {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-split-section .btn-lg {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .split-slider-image {
        max-height: 200px !important;
    }
}

/* ==========================================================================
   Block Content Styles (Zigzag, Cards, Hero etc.)
   ========================================================================== */

/* Agency Theme - Zigzag Sections (Override Global Styles) */
.content-section .zigzag-sections,
.block-content .zigzag-sections {
    padding: 0 !important;
}

.content-section .zigzag-section,
.block-content .zigzag-section {
    padding: 4rem 0 !important;
    position: relative;
}

.content-section .zigzag-section:nth-child(even),
.block-content .zigzag-section:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.7) !important;
    position: relative !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.content-section .zigzag-section:nth-child(even) .container,
.block-content .zigzag-section:nth-child(even) .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.content-section .zigzag-section h3,
.block-content .zigzag-section h3 {
    font-size: 3.8rem !important;
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    margin-bottom: 1.5rem !important;
}

.content-section .zigzag-section p,
.block-content .zigzag-section p {
    font-size: 1.4rem !important;
    line-height: 1.5 !important;
    color: #6c757d !important;
}

.content-section .zigzag-section img,
.block-content .zigzag-section img {
    border-radius: var(--border-radius) !important;

    transition: var(--transition-base) !important;
}

.content-section .zigzag-section img:hover,
.block-content .zigzag-section img:hover {
    transform: translateY(-5px) !important;

}

/* Default placeholder for missing images */
.zigzag-section .bg-light {
    background-color: var(--light-color) !important;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px dashed #dee2e6;
}

/* Agency Theme - Zigzag Responsive Styles */
@media (max-width: 767.98px) {
    .content-section .zigzag-section,
    .block-content .zigzag-section {
        padding: 2rem 0 !important;
    }
    
    /* Mobile'da full-width davranışını da koruyalım */
    .content-section .zigzag-section:nth-child(even),
    .block-content .zigzag-section:nth-child(even) {
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    .content-section .zigzag-section:nth-child(even) .container,
    .block-content .zigzag-section:nth-child(even) .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .content-section .zigzag-section h3,
    .block-content .zigzag-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .content-section .zigzag-section p,
    .block-content .zigzag-section p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .content-section .zigzag-section .col-md-6:first-child,
    .block-content .zigzag-section .col-md-6:first-child {
        margin-bottom: 2rem !important;
    }
}

/* Agency Theme - Zigzag Alternating Layout */
@media (min-width: 768px) {
    /* Odd sections (1st, 3rd, 5th...) - Content left, Image right (default order) */
    .content-section .zigzag-section:nth-child(odd) .col-md-6:first-child,
    .block-content .zigzag-section:nth-child(odd) .col-md-6:first-child {
        order: 1 !important;
    }
    
    .content-section .zigzag-section:nth-child(odd) .col-md-6:last-child,
    .block-content .zigzag-section:nth-child(odd) .col-md-6:last-child {
        order: 2 !important;
    }
    
    /* Even sections (2nd, 4th, 6th...) - Image left, Content right */
    .content-section .zigzag-section:nth-child(even) .col-md-6:first-child,
    .block-content .zigzag-section:nth-child(even) .col-md-6:first-child {
        order: 2 !important;
    }
    
    .content-section .zigzag-section:nth-child(even) .col-md-6:last-child,
    .block-content .zigzag-section:nth-child(even) .col-md-6:last-child {
        order: 1 !important;
    }
    
    .content-section .zigzag-section:nth-child(even) .zigzag-content,
    .block-content .zigzag-section:nth-child(even) .zigzag-content {
        text-align: right;
    }
}

/* Force display flex for zigzag rows to enable order property */
.content-section .zigzag-section .row,
.block-content .zigzag-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Card Grids */
.cards2-section,
.cards3-section,
.cards4-section {
    padding: 3rem 0;
}

.cards2-section .card,
.cards3-section .card,
.cards4-section .card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.cards2-section .card:hover,
.cards3-section .card:hover,
.cards4-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Hero Blocks */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .navbar,
    .carousel,
    .btn,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}