/* ============================================
   Grill des Lys - Restaurant
   Site vitrine - Coming Soon
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700;900&family=Playfair+Display:wght@400;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #0a0a0a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header / Navbar ---- */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 160px;
    transition: transform 0.3s ease;
}

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

.facebook-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    transition: color 0.3s ease;
}

.facebook-link:hover {
    color: #1877f2;
}

.facebook-link .fb-icon {
    width: 22px;
    height: 22px;
}

.facebook-link .fb-text {
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(200, 55, 18, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a00 0%, #0a0a0a 40%, #1a0505 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 55, 18, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 55, 18, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #fff;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .tagline {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero .opening-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c83712, #e8491d);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.6s both, pulse 2s ease-in-out infinite 1.6s;
    box-shadow: 0 4px 30px rgba(200, 55, 18, 0.4);
}

/* ---- Section Styling ---- */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 50px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c83712, #e8491d);
    margin: 15px auto 20px;
    border-radius: 2px;
}

/* ---- Concept Section ---- */
.concept {
    background: #111;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.concept-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 55, 18, 0.3);
    box-shadow: 0 10px 40px rgba(200, 55, 18, 0.1);
}

.concept-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.concept-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 12px;
}

.concept-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
    line-height: 1.7;
}

.concept-card .price-tag {
    display: inline-block;
    margin-top: 15px;
    background: rgba(200, 55, 18, 0.15);
    color: #e8491d;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

/* ---- Contact Info Bar ---- */
.contact-bar {
    background: linear-gradient(135deg, #c83712, #e8491d);
    padding: 40px 0;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-bar-item {
    color: #fff;
}

.contact-bar-item .icon {
    font-size: 2em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-bar-item h4 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-bar-item p {
    font-size: 0.95em;
    opacity: 0.9;
    line-height: 1.6;
}

/* ---- Recruitment Section ---- */
.recruitment {
    background: #0d0d0d;
}

.recruitment-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.recruitment-content > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 1.05em;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.job-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: rgba(200, 55, 18, 0.3);
    transform: translateY(-3px);
}

.job-card .job-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.job-card h3 {
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 8px;
}

.job-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

.recruitment .cta-email {
    display: inline-block;
    background: linear-gradient(135deg, #c83712, #e8491d);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 55, 18, 0.3);
}

.recruitment .cta-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(200, 55, 18, 0.5);
}

/* ---- Map Section ---- */
.map-section {
    background: #111;
    padding: 60px 0 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) brightness(1);
}

/* ---- Footer ---- */
.footer {
    background: #080808;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85em;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer a:hover {
    color: #e8491d;
}

.footer .footer-links {
    margin-bottom: 10px;
}

.footer .footer-links a {
    margin: 0 15px;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(200, 55, 18, 0.4);
    }
    50% {
        box-shadow: 0 4px 40px rgba(200, 55, 18, 0.7);
    }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .facebook-link .fb-text {
        display: none;
    }

    .facebook-link .fb-icon {
        width: 26px;
        height: 26px;
    }

    .nav-links a {
        padding: 12px 16px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero .tagline {
        font-size: 1.05em;
    }

    .hero-logo {
        max-width: 250px;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6em;
    }

    .hero .opening-badge {
        font-size: 0.9em;
        padding: 12px 25px;
    }

    .concept-card {
        padding: 30px 20px;
    }
}
