:root {
    --color-black: #121212;
    --color-white: #f0f0f0;
    --color-gold: #d4af37;
    --color-violet: #8e4585;
    --color-magenta: #c71585;
    --color-dark-red-violet: #2a0718;
    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #1a0e14;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(to bottom, rgba(18, 18, 18, 1) 70%, rgba(18, 18, 18, 0));
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
    text-align: center;
}

nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    color: var(--color-gold);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-white);
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 160px;
}

section {
    background-color: rgba(30, 15, 25, 0.7);
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

section:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    background-color: rgba(30, 15, 25, 0.9);
}

h2 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.8em;
    margin-bottom: 15px;
}

p {
    font-size: 1em;
    margin-bottom: 0;
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-bar a {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1.2em;
}

.art-deco-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

.slideshow-container {
    position: fixed;
    width: 200px;
    top: 0;
    bottom: 0;
    border: 5px solid var(--color-gold);
    overflow: hidden;
    z-index: 1002;
}

#slideshow1 {
    left: max(calc((100% - 2300px) / 2), 0px);
}

#slideshow2 {
    right: max(calc((100% - 2300px) / 2), 0px);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

@media (max-width: 1200px) {
    main {
        grid-template-columns: 1fr;
    }
}
