* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #333333;
    --accent: #FFD700;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switch */
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
}

#langBtn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 26, 0.3);
}

#langBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 180, 26, 0.4);
}

#langIcon {
    font-size: 1.2em;
}

/* Header */
header {
    background: var(--dark);
    color: var(--light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--gold);
    font-size: 1.5em;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: var(--dark);
    color: var(--light);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.5));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5em;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--light);
}

.hero-cta {
    margin: 30px 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 26, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 180, 26, 0.6);
}

.hero-owner {
    margin-top: 40px;
    font-size: 1.2em;
    color: var(--gold);
    font-weight: 600;
}

.hero-owner span {
    color: var(--light);
    font-size: 0.9em;
    font-weight: 400;
}

.hero-image {
    position: absolute;
    right: 10%;
    z-index: 2;
}

.paint-brush-icon {
    font-size: 12em;
    opacity: 0.15;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--light);
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--dark);
    margin-bottom: 40px;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto;
}

.about-text {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.about-languages {
    font-size: 1.1em;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 50px;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3em;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.feature h3 {
    color: var(--dark);
    font-size: 1.3em;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: #f8f8f8;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--dark);
    margin-bottom: 60px;
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(244, 180, 26, 0.3);
}

.service-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--dark);
    color: var(--light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--gold);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5em;
    color: var(--gold);
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-cta {
    background: var(--gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 1.8em;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: var(--light);
    text-align: center;
    padding: 30px 20px;
}

.footer-languages {
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .language-switch {
        top: 15px;
        right: 70px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--dark);
        width: 70%;
        height: 100vh;
        padding: 100px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-links a {
        font-size: 1.5em;
    }
    
    .logo h1 {
        font-size: 1.2em;
    }
    
    .hero-logo img {
        height: 120px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
    
    .paint-brush-icon {
        font-size: 8em;
    }
    
    .about-features {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 0.9em;
    }
    
    .hero-logo img {
        height: 100px;
    }
}
