/*!
====================================================
Project: Hôtel IMI
Developed by: Ezan Consulting LLC
Built: January 2026
====================================================
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

/* LOGO - always golden, clickable */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
    text-decoration: none;
}

/* NAV LINKS */
.nav-links a,
.nav-links a:visited,
.nav-links a:link {
    margin-left: 30px;
    text-decoration: none;
    color: #f5e6c8;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile menu icon */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.image-bg {
    background-size: cover;
    background-position: center;
}

.video-bg {
    object-fit: cover;
}

.hero-bg.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    letter-spacing: 4px;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 2px;
    color: #f5e6c8;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    .hero p {
        font-size: 16px;
    }
}

/* Animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        display: none;
        flex-direction: column;
    }
    .nav-links a {
        margin: 20px 0;
        font-size: 18px;
    }
    .menu-toggle {
        display: block;
    }
}

.nav-active {
    display: flex;
}

/* ABOUT PAGE */
.about-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background: #111;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 900px;
    color: #f5e6c8;
    text-align: center;
}

.about-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight {
    color: #d4af37;
    font-weight: 500;
}

.signature {
    margin-top: 40px;
    font-size: 18px;
    color: #d4af37;
}

/* ROOMS PAGE */
.rooms-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rooms-container {
    max-width: 900px;
    color: #b8952b; /* DARKER GOLD for better readability */
}

.rooms-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.placeholder-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b8952b;
}

/* CONTACT PAGE */
.contact-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5e6c8;
}

.contact-container {
    max-width: 600px;
}

.contact-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    color: #f5e6c8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: #f5e6c8;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link i {
    font-size: 32px;
}

.contact-link:hover {
    color: #d4af37;
    transform: scale(1.05);
}

.contact-link.whatsapp i { color: #25D366; }
.contact-link.facebook i { color: #3b5998; }
.contact-link.phone i { color: #f5e6c8; }

@media (max-width: 768px) {
    .contact-container h1 { font-size: 38px; }
    .contact-link { font-size: 18px; }
    .contact-link i { font-size: 28px; }
}

/* ROOMS OFFERS */
.page-header {
    text-align: center;
    padding: 160px 20px 80px;
    background: #111;
    color: #f5e6c8;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.85;
}

.offers {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 100px;
}

.offer-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.offer-row.reverse {
    flex-direction: row-reverse;
}

.offer-text {
    flex: 1;
    color: #b8952b; /* Darker gold for text */
}

.offer-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d4af37; /* Keep titles bright gold */
    margin-bottom: 15px;
}

.offer-text p,
.offer-text ul li {
    color: #b8952b; /* Darker gold for better visibility */
    font-weight: 500;
}

.offer-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.offer-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
}

.price {
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-left: 3px solid #d4af37;
    display: inline-block;
    color: #b8952b; /* Darker gold for price */
    font-weight: 600;
}

/* ROOMS SLIDER */
.offer-slider {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.offer-slider img,
.offer-slider video {
    min-width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 22px;
    scroll-snap-align: start;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #000;
}

@media (max-width: 900px) {
    .offer-row,
    .offer-row.reverse {
        flex-direction: column;
    }
    .offer-slider img,
    .offer-slider video {
        height: 320px;
    }
    .page-header h1 {
        font-size: 36px;
    }
}

/* RESTAURANT PAGE */
.restaurant-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    color: #d4af37; /* GOLD for visibility */
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 17px;
    line-height: 2;
}

.restaurant-media {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 100px;
}

.media-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.media-slider img,
.media-slider video {
    min-width: 100%;
    height: 550px;
    object-fit: contain;
    border-radius: 22px;
    scroll-snap-align: start;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #000;
}

@media (max-width: 900px) {
    .media-slider img,
    .media-slider video {
        height: 320px;
    }
}

/* RESTAURANT MENUS */
.restaurant-menus {
    background: #111;
    padding: 80px 20px 120px;
    text-align: center;
}

.restaurant-menus h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 50px;
}

.menus-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 18px;
}

.menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #f5e6c8;
}

.menu-card img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .menus-grid {
        grid-template-columns: 1fr;
    }
}
