﻿/* ======================
   RESET & BASE
====================== */

body {
    background-color: #000;
    color: white;
    font-family: 'Calibri', 'Arial', sans-serif;
    font-size: 20px;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", serif;
    font-weight: 700;
}

.section-title {
    font-size: 50px;
    font-family: "Cinzel", serif;
    font-weight: 600;
}

.soft-shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* ======================
   BUTTONS
====================== */

.btn-image {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    text-align: center;
    font-family: "Cinzel", serif;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    padding: 23px 0;
    width: 181px;
    transition: background-image 0.3s ease;
}

.btn-blue {
    background-image: url('../img/settings/btn-blue.png');
}
.btn-blue:hover {
    background-image: url('../img/settings/btn-blue-hover.png');
}

.btn-red {
    background-image: url('../img/settings/btn-red.png');
}
.btn-red:hover {
    background-image: url('../img/settings/btn-red-hover.png');
}

.btn-shadow {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

/* ======================
   NAVBAR
====================== */

.navbar {
    background-color: rgba(8, 7, 13, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    font-family: Cinzel, serif;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #ccc;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .dropdown-custom {
    position: relative;
}

.navbar .dropdown-custom .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(8, 7, 13, 0.85);
    padding: 0;
    list-style: none;
    min-width: 150px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-custom .submenu li {
    width: 100%;
}

.navbar .dropdown-custom .submenu .nav-link {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    font-size: 16px;
    font-family: "Cinzel", serif;
    font-weight: 500;
    color: white;
}

.navbar .dropdown-custom:hover .submenu {
    display: block;
}

.navbar .dropdown-custom .submenu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

@media (min-width: 992px) {
    .navbar .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .navbar .navbar-collapse {
        justify-content: center;
    }
}

/* ======================
   HEADER STYLES
====================== */

.page-header {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    padding: 40px 20px;
}
.page-header-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.header-title {
    background-image: url('../img/settings/title-background.png');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    height: 142px;
    padding: 27px 0;
    text-shadow: 0 0 2px #fff, 0 0 12px #fff;
}

/* ======================
   SECTION BASE STYLES
====================== */

.video-section {
    position: relative;
    height: 72vh;
    overflow: hidden;
}
.video-section-cs {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.small-section{
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}
.small-section .container {
    position: relative;
    z-index: 2;
}

.default-section {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 45vh;
    padding: 60px 0;
}
.default-section .container {
    position: relative;
    z-index: 2;
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.decorated-section {
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}
.decorated-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 28px;
    background-image: url('../img/settings/arrow-top.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}
.decorated-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31px;
    height: 28px;
    background-image: url('../img/settings/arrow-bottom.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}

/* ======================
   SECTION STYLES
====================== */

.content-left .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-left .container > div:first-child {
    flex: 1 1 50%;
    text-align: left;
}
.content-left .container > div:last-child {
    flex: 1 1 50%;
    text-align: center;
}
.content-center .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%;
}

/* ======================
   FOOTER
====================== */

footer {
    background: #fff;
    font-size: 16px;
    color: #000;
    padding: 20px 0;
}
footer img {
    max-width: 100px;
    margin-top: 10px;
}

/* ======================
   RESPOSIVE STYLES
====================== */

@media (max-width: 768px) {
    .main-content {
        padding: 80px 20px;
    }
}
