/* Global Variables */
:root {
    --bg-color: #191919;
    --bg-secondary: #222222;
    --text-primary: #f0f0f0;
    --text-secondary: #cccccc;
    --accent-color: #c5a059;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

h3 {
    font-size: 1.75rem;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gold {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}

/* Scroll Snap */
.snap-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding-top: var(--header-height);
}

.hero-content {
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.locations {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.separator {
    color: var(--accent-color);
    margin: 0 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* About Section */
.about {
    background-color: var(--bg-color);
    position: relative;
    padding: 5rem 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.content-split {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Portrait Section */
.portrait-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.portrait-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.portrait-image {
    flex: 0 0 350px;
    position: relative;
}

.portrait-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: -20px 20px 0 var(--accent-color);
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.portrait-image img:hover {
    transform: translate(5px, -5px);
    box-shadow: -15px 15px 0 var(--accent-color);
    filter: grayscale(0%);
}

.portrait-text {
    flex: 1;
}

.portrait-text h2 {
    margin-bottom: 0.5rem;
}

.portrait-text h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.portrait-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.portrait-container.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .portrait-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .portrait-container.reverse {
        flex-direction: column;
    }

    .portrait-image {
        flex: 0 0 auto;
        width: 80%;
        max-width: 350px;
    }
}

/* Expertise Section */
.expertise {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.expertise h2 {
    margin-bottom: 4rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item p,
.info-item a {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 2rem;
    display: block;
}

.info-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.btn-gold {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-gold:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Footer */
footer {
    background: #111;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-primary);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.socials a:hover {
    color: var(--accent-color);
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 5%;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

.site-credit {
    color: #555;
    font-size: 0.75rem;
}

.site-credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
    transition: color 0.3s;
}

.site-credit a:hover {
    color: var(--text-primary);
}

.site-credit img {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Media Queries */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--accent-color);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
        /* Above nav links */
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .container {
        width: 95%;
    }
}