/* Global Styles */
:root {
    --primary-color: #8c2f1b;
    /* Ottoman Red */
    --gold-color: #d4af37;
    /* Gold */
    --dark-bg: #050505;
    --text-color: #e0e0e0;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Lora', serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text,
.font-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.font-lora {
    font-family: 'Lora', serif;
}

.text-gold {
    color: var(--gold-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #58181F, #8c2f1b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8c2f1b, #b8860b);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 47, 27, 0.4);
}

.btn-gold {
    background-color: transparent;
    color: var(--gold-color);
    border: 1px solid var(--gold-color);
    font-family: 'Cinzel', serif;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-color);
    color: #000;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Navbar */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#mainNav .navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold-color);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    margin: 0 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link.active {
    color: var(--gold-color);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

#mainNav.navbar-shrink {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Header / Hero */
header.masthead {
    padding-top: 10rem;
    padding-bottom: calc(10rem - 4.5rem);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 1)), url('../assets/img/hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header.masthead h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

header.masthead .divider {
    max-width: 15rem;
    border-width: 0.2rem;
    border-color: var(--gold-color);
    margin: 2rem auto;
    opacity: 1;
    box-shadow: 0 0 10px var(--gold-color);
}

header.masthead p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* About Section */
.page-section {
    padding: 6rem 0;
    position: relative;
}

.bg-dark-texture {
    background-color: #0a0a0a;
    background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
}

.section-heading {
    color: var(--gold-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.divider-custom {
    margin: 1.5rem auto 3rem;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.feature-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
}

/* Portfolio / Collections */
.portfolio-box {
    position: relative;
    display: block;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.portfolio-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.portfolio-box-img-container {
    height: 300px;
    background-color: #1a1a1a;
    position: relative;
}

.portfolio-box-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-box:hover .portfolio-box-img-container img {
    transform: scale(1.1);
}

.portfolio-box-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.project-category {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--gold-color);
    text-transform: uppercase;
}

.project-name {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.social-icons a:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: #000;
}
