/* ========================================
   THÈME ORIGINAL - JAD HÔTEL
   Design complet et unique
   ======================================== */

/* Variables de couleur */
:root {
    --brun-principal: #8B4513;
    --brun-foncé: #6B3410;
    --brun-clair: #A0522D;
    --brun-très-clair: rgba(139, 69, 19, 0.1);
    --brun-très-clair-2: rgba(160, 82, 45, 0.1);
    --brun-très-foncé: #4A2C17;
    --brun-moyen: #CD853F;
    --blanc: #FFFFFF;
    --noir: #000000;
    --gris-clair: #F5F5F5;
    --gris-moyen: #888888;
    --gris-foncé: #333333;
    --or: #FFD700;
    --argent: #C0C0C0;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--gris-foncé);
    background-color: var(--blanc);
    overflow-x: hidden;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

/* Header Top */
.header-top {
    background: linear-gradient(135deg, var(--brun-principal) 0%, var(--brun-foncé) 100%);
    color: var(--blanc);
    padding: 10px 0;
    font-size: 14px;
}

.header-contact span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.header-contact i {
    margin-right: 8px;
    font-size: 12px;
}

.social-links a {
    color: var(--blanc);
    margin: 0 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--or);
    transform: translateY(-2px);
}

.btn-reserve {
    background: var(--or);
    color: var(--brun-foncé);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-reserve:hover {
    background: var(--blanc);
    color: var(--brun-principal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Navigation principale */
.main-nav {
    background: var(--blanc);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--brun-principal);
    font-weight: 700;
    font-size: 24px;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.2);
}

.brand-text {
    font-family: 'Georgia', serif;
    font-style: italic;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    color: var(--gris-foncé);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

.nav-link span {
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--brun-très-clair) 0%, var(--brun-très-clair-2) 100%);
    color: var(--brun-principal);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gris-foncé);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--brun-très-clair) 0%, var(--brun-très-clair-2) 100%);
    color: var(--brun-principal);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brun-principal);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Navigation mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--blanc);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(139, 69, 19, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    background: linear-gradient(135deg, var(--brun-principal) 0%, var(--brun-foncé) 100%);
    color: var(--blanc);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
}

.mobile-logo {
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--blanc);
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-menu {
    padding: 20px 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--gris-foncé);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--brun-très-clair) 0%, var(--brun-très-clair-2) 100%);
    color: var(--brun-principal);
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown-toggle .fa-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(139, 69, 19, 0.05);
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-menu li {
    background: rgba(139, 69, 19, 0.03);
}

.mobile-dropdown-menu a {
    padding-left: 55px;
    font-size: 14px;
}

.mobile-nav-footer {
    padding: 20px;
    background: rgba(139, 69, 19, 0.05);
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.mobile-contact p {
    margin: 5px 0;
    color: var(--gris-moyen);
    font-size: 14px;
}

.mobile-contact i {
    margin-right: 10px;
    color: var(--brun-principal);
}

.mobile-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.mobile-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brun-principal);
    color: var(--blanc);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--or);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: linear-gradient(135deg, var(--brun-très-foncé) 0%, var(--brun-foncé) 100%);
    color: var(--blanc);
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget h4 {
    color: var(--or);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--or);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.footer-logo h3 {
    font-size: 24px;
    margin: 0;
    color: var(--or);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--or);
    border-color: var(--or);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--or);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--or);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--or);
}

.contact-text h5 {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: var(--or);
}

.contact-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.newsletter h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--or);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 20px;
    color: var(--blanc);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--or);
    border: none;
    padding: 12px 15px;
    color: var(--brun-foncé);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--blanc);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-link {
    color: var(--or);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.payment-methods h5 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--or);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brun-principal) 0%, var(--brun-foncé) 100%);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: var(--blanc);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 20px;
}

/* ========================================
   COMPOSANTS GLOBAUX
   ======================================== */

/* Boutons */
.btn-primary {
    background: linear-gradient(135deg, var(--brun-principal) 0%, var(--brun-foncé) 100%);
    color: var(--blanc);
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--brun-principal);
    border: 2px solid var(--brun-principal);
    padding: 13px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--brun-principal);
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--brun-principal);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--or) 0%, var(--brun-moyen) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--gris-moyen);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Cards */
.card {
    background: var(--blanc);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 24px;
    color: var(--brun-principal);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: var(--gris-moyen);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablettes */
@media (max-width: 992px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .brand-logo {
        font-size: 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button i {
        margin-right: 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}
