:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f0f0f0;
    --accent-color: #c4a265;
    --text-color: #cccccc;
    --bg-color: #111111;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

p {
    font-size: 1.1rem;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
}

.lang-button {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.lang-button:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.lang-button.active {
    color: var(--accent-color);
    font-weight: bold;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('hero-background.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
}

/* About Section */
.about {
    background-color: var(--primary-color);
}
.about .container {
    max-width: 800px;
    text-align: center;
}

/* Features Section */
.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Process Section */
.process {
    background-color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Gallery Section */
.gallery {
     background-color: var(--bg-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    filter: saturate(0.8);
    transition: all 0.3s ease;
}
.gallery-item:hover img {
    filter: saturate(1);
    transform: scale(1.05);
}
.gallery-item {
    overflow: hidden;
    border-radius: 5px;
}


/* Contact Section */
.contact {
    text-align: center;
}
.contact .container {
    max-width: 800px;
}
.contact p {
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 400;
    font-size: 1rem;
    transition: transform 0.2s ease, opacity 0.3s;
}
.contact-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.contact-button img {
    height: 24px;
    margin-right: 10px;
}
.contact-button.telegram {
    background-color: #0088cc;
}
.contact-button.phone {
    background-color: #3d3d3d;
}
.contact-button.whatsapp {
    background-color: #25D366;
}
.contact-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 50px 0;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

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

.footer-info p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
}

.footer-info a {
    color: var(--text-color);
    transition: color 0.3s;
}

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

/* Animations */
.animate-on-load {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
.animate-on-load:nth-child(1) { animation-delay: 0.2s; }
.animate-on-load:nth-child(2) { animation-delay: 0.4s; }
.animate-on-load:nth-child(3) { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


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


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    section {
        padding: 60px 0;
    }
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .footer-info {
        margin-bottom: 20px;
    }
}