:root {
    --primary: #4F46E5;
    --secondary: #ec4899;
    --bg: #0f172a;
    --surface: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--text-muted);
    font-weight: 600;
}

.lang-switch span {
    cursor: pointer;
    transition: color 0.3s;
}

.lang-switch span:hover, .lang-switch span.active {
    color: var(--text);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

/* Page Content */
main {
    min-height: calc(100vh - 140px);
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h1.page-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    animation: fadeIn 0.5s ease;
}

.page-content {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    white-space: pre-line;
    animation: fadeIn 0.6s ease;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.7s ease;
}

.gallery img {
    --rot: 0deg;
    transform: rotate(var(--rot));
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gallery img:hover {
    transform: rotate(var(--rot)) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Contact Forms */
.contact-section {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    animation: fadeIn 0.5s ease;
}

.contact-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #60a5fa;
}

.btn {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn:hover {
    opacity: 0.9;
}

.btn:active {
    transform: scale(0.98);
}

.contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info p {
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-info strong {
    color: #c084fc;
    min-width: 90px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--surface);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    h1.page-title {
        font-size: 2.2rem;
    }
    
    main {
        padding: 2rem 5%;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
}
