/* Option 1: Midnight & Gold */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

h1, h2, h3, h4, .quote {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

header {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    max-height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d4af37; /* Refined Gold */
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 5rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.hero h3 {
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.image-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.image-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.page-section {
    text-align: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.page-section h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.5rem;
    color: #fff;
    margin: 2rem 0;
    font-style: italic;
}

.experience {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #888;
}

.services p {
    font-size: 0.95rem;
    color: #bbb;
}

a.btn-link, .contact-info a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

a.btn-link:hover, .contact-info a:hover {
    border-bottom: 1px solid #d4af37;
}

footer {
    text-align: center;
    padding: 3rem;
    background-color: #080808;
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}