:root {
    --accent: #d4af37; /* Metallic Gold */
    --bg: #000000;
    --card: rgba(20, 20, 20, 0.7);
    --text: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Vertical Sidebar Menu */
nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #080808;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid #1a1a1a;
    z-index: 1000;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--accent);
}

.nav-links { list-style: none; }
.nav-links li { margin: 1.5rem 0; }
.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
    padding-left: 10px;
}

/* Layout Wrapper */
.main-content {
    margin-left: 250px; /* Offset for Sidebar */
    padding: 5vh 10vw;
}

/* Modern Photo Effects */
.image-reveal {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 4rem;
    position: relative;
    clip-path: inset(0 0 0 0); /* Used for reveal animation */
    transition: clip-path 1s ease-in-out;
}

.image-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.image-reveal:hover img {
    transform: scale(1.1) rotate(1deg);
}

/* Glassmorphism Text Card */
.content-box {
    background: var(--card);
    backdrop-filter: blur(15px);
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-columns {
    column-count: 1; /* For this style, we use a clean centered flow */
    max-width: 800px;
}

p { margin-bottom: 2rem; font-weight: 300; color: #bbb; font-size: 1.05rem; }

/* Cinematic Button */
.btn-gold {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s;
}

.btn-gold:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 1100px) {
    nav { width: 100%; height: auto; position: relative; padding: 1rem; }
    .main-content { margin-left: 0; padding: 2rem; }
    .nav-links { display: flex; gap: 1rem; flex-wrap: wrap; }
    h1 { font-size: 2rem; }
}