:root {
    --gold: #D4AF37;
    --dark-bg: #0a0a0a;
    --navy: #1a2a6c;
    --ruby: #b21f1f;
    --text-light: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

header {
    background: rgba(10, 10, 10, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.main-logo {
    height: 80px;
    transition: transform 0.3s;
}

.main-logo:hover {
    transform: scale(1.1);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

.btn-gold {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.divider {
    height: 2px;
    width: 100px;
    background: var(--gold);
    margin: 20px auto;
}

/* Services */
.services-section {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #151515;
    padding: 40px;
    border: 1px solid #333;
    transition: 0.4s;
    text-align: center;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: #1a1a1a;
}

.service-card h3 {
    margin: 20px 0;
    color: var(--gold);
}

/* Formulaire */
.contact-section {
    padding: 100px 20px;
    background: var(--navy); /* Rappel du bleu saphir du logo */
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid #444;
    color: white;
}

.submit-btn {
    background: var(--gold);
    color: black;
    width: 100%;
    padding: 15px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: white;
}


.main-logo {
    height: 90px; /* Ajustez la taille ici */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 5px 0;
}



/* Language Switcher Luxury Style */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 15px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-btn:hover {
    background: var(--gold);
    color: black;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: #151515;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1;
    border: 1px solid var(--gold);
}

.lang-dropdown a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    text-align: left;
}

.lang-dropdown a:hover {
    background-color: var(--gold);
    color: black;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

/* Style spécifique pour l'Arabe */
.lang-ar {
    direction: rtl;
    text-align: right !important;
    font-family: 'Arial', sans-serif;
}

/* Classe pour inverser le site en Arabe */
.rtl-mode {
    direction: rtl;
    text-align: right;
}