
:root {
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-gold: #bfa05f;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.layout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.top-nav a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: var(--accent-gold);
}

.btn-contact {
    border: 1px solid var(--text-main);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--text-main);
    color: white;
}

/* Hero */
.hero-section {
    position: relative;
    height: 80vh;
    margin: 2rem 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

.caption h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.caption span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

/* Services */
.services-list {
    padding: 4rem 0 8rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.service-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px #f5f5f5;
}

/* Footer */
.site-footer {
    background: #111;
    color: white;
    padding: 4rem 2rem 2rem;
    margin: 0 -2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.footer-col h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-col p {
    color: #999;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 1rem;
    }
    .top-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .top-nav a {
        margin: 0;
    }
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
