/* Cinzel Font Family */
@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/Cinzel-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Font Family */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ================= GLOBAL ================= */

body {
    background: #0B0B0B;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* Hide WordPress default title */

.site-title,
.site-description {
    display: none !important;
}

/* ================= NAVBAR ================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Navbar spacing */

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Menu links */

.navbar-nav .nav-link {
    color: #ffffff !important;
    margin-left: 30px;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #C47A4A !important;
}

/* ================= LOGO ================= */

/* Important Bootstrap override */

.navbar-brand img {
    height: 120px !important;
    width: auto !important;
}

.main-logo {
    height: 120px !important;
    width: auto !important;
    transition: 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(196,122,74,0.35));
}

/* ================= HERO ================= */

.hero-section {
    background: url('http://aura-cu.com/wp-content/uploads/2026/02/Banner-Background.png') center center / cover no-repeat;
    position: relative;
    min-height: 100vh;
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.75) 40%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.35) 100%
    );
    top: 0;
    left: 0;
}

/* HERO TEXT */

.hero-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: #d0d0d0;
    max-width: 520px;
}

/* ================= BUTTONS ================= */

.btn-copper {
    background: #C47A4A;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-copper:hover {
    background: #9C5A2E;
    color: #ffffff;
}

/* ================= WHY SECTION ================= */

.why-section {
    background: #111111;
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 50px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

.navbar-brand img,
.main-logo {
height: 80px !important;
}

}

@media (max-width: 768px) {

.hero-title {
font-size: 34px;
}

.hero-text {
font-size: 16px;
}

.navbar-nav .nav-link {
margin-left: 0;
margin-top: 15px;
}

}