@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #050505;
    --gold: #d4af37;
    --gold-dark: #b5952f;
    --text-light: #e0e0e0;
    --text-muted: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth; /* Enables smooth scrolling when navbar links are clicked */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    backdrop-filter: blur(5px);
}

.nav-logo {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Typography & Utilities */
h1, h2, h3 { text-transform: uppercase; letter-spacing: 2px; }
h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 10px; }
h1 span { font-weight: 300; }
h2 { font-size: 3rem; margin-bottom: 10px; }
h2 span { color: var(--gold); }
.gold-text { color: var(--gold); }
.section-num { color: var(--gold); font-size: 1.5rem; border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 5px; margin-bottom: 20px; }
.line { width: 50px; height: 2px; background-color: var(--gold); margin-bottom: 20px; }
.script-font { font-style: italic; color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; }
.mt-2 { margin-top: 40px; }

/* Layout */
.section {
    min-height: 100vh;
    padding: 100px 5% 80px; /* Top padding increased to account for fixed navbar */
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Standard Images */
.image-box img {
    height: 80%;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}
.framed img {
    border: 2px solid var(--gold);
    padding: 10px;
}

/* Image Collage Grid */
.collage {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-rows: auto auto; /* Two rows */
    gap: 15px; /* Space between images */
}
.collage img {
    height: 100%;
    min-height: 200px; /* Keeps them from getting too small */
    border: 1px solid #333;
    transition: transform 0.3s ease;
}
.collage img:hover {
    transform: scale(1.03); /* Slight zoom on hover for interactivity */
    border-color: var(--gold);
}

/* Specific Sections */
.hero-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
}
.portfolio-tag { text-align: right; letter-spacing: 5px; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 20px; }
.subtitle { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); display: inline-block; padding: 5px 0; margin-bottom: 30px; }

.quote, .quote-bottom, .quote-large {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-muted);
}
.quote-bottom { margin-top: 20px; border-left: none; text-align: center; color: var(--text-light); }
.quote-large { font-size: 1.5rem; margin-top: 40px; color: var(--text-light); }

.icon-row { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.icon-item { font-size: 0.8rem; border: 1px solid var(--gold); padding: 5px 15px; border-radius: 20px; color: var(--gold); }

ul.list { list-style: none; margin-top: 20px; }
ul.list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
ul.list li::before { content: '✔'; color: var(--gold); position: absolute; left: 0; }

.hobby-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 30px; }
.hobby p { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }

/* Contact Section */
.contact-info { margin: 30px 0; }
.contact-item { border: 1px solid #333; padding: 15px; margin-bottom: 10px; border-radius: 5px; font-size: 0.9rem; }
.contact-item span { color: var(--gold); width: 100px; display: inline-block; }

.contact-form { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.contact-form input, .contact-form textarea {
    background: transparent; border: 1px solid #333; padding: 12px;
    color: var(--text-light); border-radius: 5px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form button {
    background: var(--gold); color: var(--bg-dark); border: none; padding: 15px;
    font-weight: bold; cursor: pointer; border-radius: 5px; transition: 0.3s;
}
.contact-form button:hover { background: var(--gold-dark); }

/* Responsive Design */
@media (max-width: 900px) {
    .two-col, .hero-content { grid-template-columns: 1fr; }
    .hero-content .image-box { order: 2; }
    .hero-content .text-box { order: 1; }
    h1 { font-size: 3rem; }
    .hobby-grid { grid-template-columns: 1fr; }
    
    /* Make navbar stack on very small screens */
    .nav-links { display: none; } /* Could add a hamburger menu here later */
}