:root {
    --primary: #c5a059;
    --primary-dark: #a68541;
    --secondary: #1a1a1a;
    --text-dark: #2d2d2d;
    --text-light: #f8f9fa;
    --bg-light: #fdfbf7;
    --bg-dark: #121212;
    --glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

h1, h2, h3, .luxury-font {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--text-light); }
h2 { font-size: 2.5rem; margin-bottom: 2rem; position: relative; padding-bottom: 15px; }
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Layout */
section {
    padding: 80px 5%;
    text-align: center;
}

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

nav.scrolled {
    background: white;
    box-shadow: var(--shadow);
    padding: 10px 5%;
}

nav.scrolled .logo h1 {
    color: var(--primary);
    font-size: 1.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1100;
    border-radius: 5px;
    overflow: hidden;
}

.lang-dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
}

.lang-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-dropdown-content.show {
    display: block !important;
}

nav.scrolled .lang-dropbtn {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Mobile Fixed Bottom Nav */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    border-top: 1px solid #eee;
}

@media (min-width: 769px) {
    .mobile-nav { display: none; }
}

.mobile-nav-item {
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-nav-item i {
    display: block !important;
    font-size: 1.5rem !important;
    margin-bottom: 5px;
    color: var(--primary) !important;
    width: 100%;
    text-align: center;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.5rem !important; line-height: 1.2; }
    h2 { font-size: 1.4rem !important; }
    section { padding: 30px 15px; }
    
    nav { padding: 10px 15px; }
    .logo h1 { font-size: 1rem !important; white-space: nowrap; }
    
    .hero { padding-top: 60px; height: 100vh; }
    .hero-content { 
        width: 100%; 
        padding: 0 10px;
    }
    .hero h1 { 
        font-size: 1.4rem !important; 
        line-height: 1.2;
        margin-bottom: 10px;
        letter-spacing: 0;
    }
    .hero p { font-size: 0.9rem !important; margin-bottom: 20px; }
    .btn-primary { 
        padding: 10px 20px; 
        font-size: 0.8rem; 
        width: auto !important; 
        min-width: 200px; 
        margin-top: 10px;
    }
    
    .services-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-card { padding: 25px 15px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 160px; }
    
    .contact-info { text-align: center; }
    .social-links { justify-content: center; }
}
