@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #bfa181;
    --bg-light: #f9f9f9;
    --text-muted: #666666;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --spacing: 2rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav ul li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Header Right Group (Language Switcher + Menu Toggle) */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.2rem 0;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.lang-divider {
    color: #ccc;
    font-size: 0.75rem;
    user-select: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding-right: 5%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-image {
    flex: 1;
    height: 80vh;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

/* Sections */
section {
    padding: 8rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.service-card {
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 2px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 2rem;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item.large {
    grid-column: span 8;
}

.gallery-item.small {
    grid-column: span 4;
}

/* Info Section */
.info-section {
    display: flex;
    align-items: center;
    gap: 10%;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.info-content {
    flex: 1;
}

.info-image {
    flex: 1;
    height: 600px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    padding: 6rem 5% 3rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-col p, .footer-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    header {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .hero {
        flex-direction: column-reverse;
        padding-top: 100px;
        text-align: center;
    }

    .hero h1 { 
        font-size: 2.8rem; 
        margin-top: 2rem;
    }

    .hero-content { padding-right: 0; }

    .hero-image {
        width: 100%;
        height: 40vh;
    }

    section {
        padding: 4rem 5%;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .gallery {
        grid-template-rows: auto;
        gap: 1rem;
    }

    .gallery-item.large, .gallery-item.small { 
        grid-column: span 12; 
        height: 300px;
    }

    .info-section { 
        flex-direction: column-reverse; 
        gap: 3rem; 
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .info-image {
        height: 400px;
        width: 100%;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .btn { width: 100%; text-align: center; }
}
