* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.gold-text {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    letter-spacing: 2px;
}
.gold-accent-text {
    color: #AA7C11;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.text-center { text-align: center; }
.max-width-md { max-width: 700px; margin: 0 auto; }

.btn-gold {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-gold:hover {
    background: #D4AF37;
    color: #0b0b0b;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.full-width { width: 100%; }

/* Splash */
.splash-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1a1a1a 0%, #050505 100%);
}
.splash-container { text-align: center; padding: 20px; }
.logo-wrapper { margin-bottom: 25px; }
.main-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.splash-container h1 { font-size: 3rem; margin-bottom: 5px; }
.subtitle {
    font-size: 1rem;
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.language-buttons .btn-gold { margin: 10px; }
.glow { text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

/* Main Pages */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background: #0b0b0b;
}
.nav-logo {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.3rem;
}
.lang-toggle button {
    background: none;
    border: none;
    color: #8c8c8c;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0 5px;
}
.lang-toggle button.active {
    color: #D4AF37;
    text-shadow: 0 0 5px rgba(212,175,55,0.5);
}

.hero {
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; color: #dfdfdf; }

.about-section, .gallery-section, .form-section { padding: 60px 10%; }
.about-section h2, .gallery-section h2, .form-section h2 { font-size: 2rem; margin-bottom: 25px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.gallery-item { overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.2); height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Form Layout */
.luxury-form {
    max-width: 750px;
    margin: 40px auto 0;
    background: #111111;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 25px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
label {
    display: block;
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus { outline: none; border-color: #D4AF37; }

/* Footer */
.luxury-footer {
    background: #050505;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.luxury-footer h3 { font-size: 1.8rem; margin-bottom: 5px; }
.contact-info { margin: 25px 0; }
.contact-info p { margin: 8px 0; font-size: 0.95rem; }
.contact-info a { color: #fff; text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: #D4AF37; }
.social-links a { color: #fff; font-size: 1.5rem; margin: 0 15px; transition: color 0.3s; }
.social-links a:hover { color: #D4AF37; }
.copyright { font-size: 0.75rem; color: #555; margin-top: 30px; }

@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
    .hero-content h2 { font-size: 1.8rem; }
    .luxury-form { padding: 20px; }
}
