@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap");

:root {
    --primary-gold: #c5a059;
    --dark-bg: #0a0b10;
    --deep-blue: #161b22;
    --accent-red: #8b0000;
    --text-light: #e0e0e0;
    --spacing-unit: 120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: "Montserrat", sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    color: var(--primary-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
}

p {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 1.1rem;
}

#page-container {
    display: flex;
    flex-direction: column;
}

header#main-header {
    background: rgba(10, 11, 16, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.et_menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    height: 60px;
    filter: drop-shadow(0 0 5px var(--primary-gold));
}

#top-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

#top-menu a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

#top-menu a:hover {
    color: var(--primary-gold);
}

.et_pb_section {
    padding: var(--spacing-unit) 0;
    position: relative;
}

.hero-row {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a1c25 0%, #0a0b10 100%);
    padding-top: 150px;
}

.et_pb_subtitle {
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
}
.et_pb_row {
    max-width: 1200px;
    margin: auto;
}
.content-row .et_pb_row {
    max-width: 900px;
}

.image-row {
    padding: 60px 0;
}

.et_pb_image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(197, 160, 89, 0.1);
    transition: transform 0.5s ease;
}

.et_pb_image img:hover {
    transform: scale(1.02);
}

.et_pb_section:nth-child(even) {
    background-color: rgba(22, 27, 34, 0.5);
}

.et_pb_section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-gold),
        transparent
    );
}

#main-footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid var(--primary-gold);
    text-align: center;
}

#footer-navigation .nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

#footer-navigation a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
}

#footer-info {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

@media (max-width: 980px) {
    :root {
        --spacing-unit: 80px;
    }

    .et_menu_container {
        flex-direction: column;
        gap: 20px;
    }

    #top-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 20px;
    }

    .hero-row {
        padding-top: 120px;
    }
}

.et_pb_section_0 {
    background-image:
        linear-gradient(rgba(10, 11, 16, 0.7), rgba(10, 11, 16, 0.7)),
        url("img/bg-pattern.webp");
    background-attachment: fixed;
    background-size: cover;
}
