:root {
    --primary: #d4a373; /* Wood color */
    --secondary: #faedcd;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #fefae0;
    --accent: #e63946;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Animations & Backgrounds */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #2a2a2a 0%, #0d0d0d 100%);
    z-index: -2;
}

/* Wood/dust particles animation effect via pseudo elements */
.animated-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(212, 163, 115, 0.1) 2px, transparent 2px),
                      radial-gradient(rgba(212, 163, 115, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: floatingDust 60s linear infinite;
    z-index: -1;
}

@keyframes floatingDust {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(10deg); }
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%;
    background-image: url('1.jpeg');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: 0;
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13,13,13,0.3), rgba(13,13,13,0.9));
    z-index: 1;
}

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

.glitch-text {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 5px;
    margin-bottom: 10px;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--darker);
    background-color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
    font-family: 'Outfit', sans-serif;
}

.cta-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 237, 205, 0.5);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    position: relative;
}

.about-grid {
    display: flex;
    justify-content: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text .highlight {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.services-list li {
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.services-list li:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    background-color: rgba(0,0,0,0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 163, 115, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Partners Section */
.partners-section {
    background-color: var(--dark);
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.partners-grid {
    text-align: center;
}

.partners-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.partners-list li {
    background: rgba(255,255,255,0.05);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, border-color 0.3s, color 0.3s;
    cursor: default;
}

.partners-list li:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    color: var(--primary);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.submit-btn {
    padding: 15px 40px;
    background-color: var(--primary);
    color: var(--darker);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.submit-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .glitch-text {
        font-size: 3.5rem;
    }
}
