:root {
    --primary: #b4a173;
    --accent:  #a1201f;
    --text:    #38342c;
    --muted:   linear-gradient(45deg, #816637, #1C1C1E);
    --light: #F7F9FC;
    --dark: #121212;
    --shadow: 0 25px 30px rgba(180, 161, 115, 0.3);
    --hover: linear-gradient(90deg, #C9A063, #3B3B3B);
    --hoverOne: linear-gradient(90deg, #a52a2a, #3B3B3B);
    --hoverTwo: linear-gradient(90deg, #a55b2a, #a52a2a);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Language Switch Button */
.language-switch {
     z-index: 1000;
     position: fixed;
    bottom: 70px;
    right: 30px;
    color: var(--light);
    background: var(--muted);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    align-items: center;
}

.language-switch:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.language-switch:active {
    transform: translateY(0);
}

/** button (top)*/
.button-top{
    z-index: 1000;
    color: var(--light);
    background: var(--muted);
    border: 2px solid var(--accent);
    font-weight: bold;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    align-items: center;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

/* Floating geometric shapes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--hover);
    border-radius: 20px;
    animation-delay: 1s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--hoverOne);
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--hoverTwo);
    transform: rotate(45deg);
    animation-delay: -10s;
}

/* Header */
header {
    border-radius: 25px;
    margin: 10px;
    background:var(--primary);
    color: var(--light);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    direction: ltr !important;
}

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

.logo {
    font-size: 1.8rem;
    display: flex;
    font-weight: 800;
    background: var(--light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logoIcon{
    animation: 9s infinite alternate slide-in;
    height: 50px;
    width: 50px;
    animation: mymove 5s infinite;
}

.studio{
    font-size: 20px;
}

/* Navigation nav-menu*/
nav ul {
    display: flex;
    list-style-type: none;
    list-style: none;
    gap: 2rem;
    border-radius: 15px;
}

nav ul li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent);
    transition: width 0.5s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
        
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.scrolling {
    background: rgba(10, 10, 10, 0.500);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    background-size: cover;               
    background-position: center;         
    background-repeat: no-repeat;     
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    position: relative;
    height: 80vh;
    text-align: center;
    overflow: hidden;
    direction: ltr !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 59, 59, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(201, 160, 99, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--muted);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 1s ease-out;
}

.hero p {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--light);
    background: var(--muted);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.9s ease;
}

.cta-button:hover {
    transform: translateY(-25px);
    box-shadow: var(--shadow);

}

/* Services Section */
.services {
    position: relative;
    margin-top: 10px;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--text);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    direction: ltr !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.500);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.500);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 160, 99, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #a1201f;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--muted);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text);
    font-weight: 700;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    background:var(--text);
    margin-top: 10px;
    background-size: cover;               
    background-position: center;         
    background-repeat: no-repeat;     
    padding: 100px 5%;
    position: relative;
}

.about-container {
    border: 2px solid var(--accent);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--text);
    border-radius: 15px;
    border: 2px solid var(--accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
    margin-top: 0.5rem;
}


/* projects */

.projects {
    padding: 100px 0;
    direction: ltr !important;
}
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.500);
    border-radius: 50px;
    border: 5px solid rgba(255, 255, 255, 0.500);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
}

.category-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #a1201f;
}

.category-img {
    display: flex;
    height: 200px;
    background-size: cover;
    background-position: center;
    justify-content: center;
    
}

.category-content {
    color: var(--text);
    padding: 10px;
    font-weight: 500;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.category-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn {
    margin: 5px;
    z-index: 1000;
    color: var(--light);
    background: var(--muted);
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-10px);
}

/* Contact Form */
.contact-form-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    direction: ltr !important;
    padding-bottom: 25px;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.500);
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.500);
    transition: all 0.3s ease;
    position: relative;
    color:var(--text);
    font-weight: 700;
    padding: 2rem;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details p {
    display: flex;
    margin-bottom: 1rem;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 1rem;
}

.contact-vid {
    flex: 1;
    min-width: 300px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-vid video {
    width: 80%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    object-fit: cover;
}

/* social-links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-radius: 15px;
    align-content: center;
    transition: 0.5s;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--muted);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--light);
    animation: ease-out 5s;
    background: var(--accent);
}

/* Footer */
footer {
    background-size: cover;               
    background-position: center;         
    background-repeat: no-repeat;     
    background: var(--text);
    color: var(--light);
    padding: 60px 0 30px;
    direction: ltr !important;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1em;
}

.footer-column h3 {
    color: var(--brown);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
     color: var(--dark);
    transform: translateY(-2px);
}

.footer-bottom {
    font-size: 1.1rem;
    padding-top: 30px;
    border-top: 2px solid var(--accent);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services, .footer-container, .contact-form-container {
        grid-template-columns: 1fr;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.600);
        flex-direction: column;
        padding: 1rem 0;
        justify-content: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
    display: none;
    }

    .studio{
        font-size: 15px;
    }

    .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .categories {
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    gap: 10px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    }

    .category-card {
        width: 100%;
    }

    .stats {
    grid-template-columns: 1fr;
    }

    .services-grid {
    grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.rem;
    }
    
    .footer-column {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        font-size: 1rem;
    }
}

/* Floating Elements */
.floating-element {
    position: fixed;
    pointer-events: none;
    opacity: 0.2;
    animation: floatAround 10s infinite linear;
}

@keyframes floatAround {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

@keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
@keyframes shimmer {
        0% { transform: translateX(-100%) rotate(45deg); }
        100% { transform: translateX(100%) rotate(45deg); }
    }    