/* ============================================
   STYLES GLOBAUX - AUKE-LAND
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
}

/* ============================================
   MENU FLOTTANT
   ============================================ */

.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    padding: 15px 20px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-title a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-title img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.logo-title h1 {
    color: white;
    font-size: 1.3rem;
    white-space: nowrap;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   MENU NAVIGATION
   ============================================ */

.top-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    background: rgba(183,28,28,0.95);
    transition: 0.3s;
    white-space: nowrap;
}

.top-menu a:hover {
    background: rgba(140,16,16,1);
}

.phone-number a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

/* ============================================
   RÉSEAUX SOCIAUX
   ============================================ */

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #145dbf;
    transform: scale(1.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(225,48,108,0.5);
}

.social-link.location {
    background: #34A853;
    color: white;
}

.social-link.location:hover {
    background: #2d9147;
    transform: scale(1.1);
}

/* ============================================
   SECTIONS & PAGES
   ============================================ */

.page {
    margin-top: 120px;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.page.dark-bg {
    background: #111;
}

.bg {
    width: 100%;
    max-width: 1200px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin: 0 auto 40px;
}

.menu-image {
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* ============================================
   SECTIONS HERO & FULL-SCREEN
   ============================================ */

.hero, .section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    transition: transform 0.5s ease;
}

.hero-content {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-overlay, .section-overlay {
    background: rgba(0,0,0,0.7);
    padding: 40px;
    border-radius: 15px;
    color: white;
    flex: 1;
    min-width: 280px;
}

.hero-overlay h2, .section-overlay h2 {
    color: #ffcc80;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-overlay p, .section-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-image-placeholder {
    flex: 1;
    min-width: 280px;
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
}

/* ============================================
   BOUTONS
   ============================================ */

.btn-menu {
    display: inline-block;
    padding: 12px 25px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-menu:hover {
    background: #e64a19;
}

/* ============================================
   PAGE CARTE (MENU CARDS)
   ============================================ */

.page-title {
    text-align: center;
    margin-top: 120px;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 10px black;
    padding: 0 20px;
    color: white;
}

.menu-container {
    max-width: 1000px;
    margin: 60px auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.menu-card {
    width: 45%;
    min-width: 280px;
    height: 300px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    text-decoration: none;
}

.menu-card:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.menu-card h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
    padding: 20px;
    margin: 0;
    font-size: 1.6rem;
    color: #ffcc80;
}

/* ============================================
   FORMULAIRES
   ============================================ */

form label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #ffcc80;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form input[type="submit"] {
    background: #ff5722;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background: #e64a19;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(0,0,0,0.9);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ÉVÉNEMENTS
   ============================================ */

.event-image {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    margin-top: 20px;
}

/* ============================================
   RESPONSIVE - TABLETTES
   ============================================ */

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .banner-content {
        flex-wrap: wrap;
    }

    .top-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        padding: 20px;
        gap: 10px;
    }

    .top-menu.show {
        display: flex;
    }

    .top-menu a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .phone-number {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(183,28,28,0.95);
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        z-index: 999;
    }

    .social-links {
        position: fixed;
        bottom: 80px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
        z-index: 999;
    }
    
    .social-link {
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .logo-title h1 {
        font-size: 1.1rem;
    }

    .page {
        margin-top: 140px;
    }

    .bg {
        height: 200px;
    }

    .hero, .section {
        min-height: auto;
        padding: 80px 15px 30px;
        background-attachment: scroll;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-overlay, .section-overlay {
        padding: 25px;
        width: 100%;
    }

    .hero-overlay h2, .section-overlay h2 {
        font-size: 1.8rem;
    }

    .hero-overlay p, .section-overlay p {
        font-size: 1rem;
    }

    .hero-image-placeholder {
        height: 200px;
        width: 100%;
    }

    .btn-menu {
        display: block;
        text-align: center;
        width: 100%;
    }

    .page-title {
        margin-top: 140px;
        font-size: 2rem;
    }

    .menu-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        margin: 40px auto;
    }

    .menu-card {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }

    .menu-card h2 {
        font-size: 1.3rem;
        padding: 15px;
    }

    form input,
    form textarea,
    form select {
        padding: 10px;
        font-size: 0.95rem;
    }

    .event-image {
        max-width: 100%;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 480px) {
    .logo-title h1 {
        font-size: 0.9rem;
    }

    .logo-title img {
        width: 35px;
        height: 35px;
    }

    .page h1,
    .page-title {
        font-size: 1.5rem;
    }

    .hero-overlay h2,
    .section-overlay h2 {
        font-size: 1.5rem;
    }

    .hero-overlay p,
    .section-overlay p {
        font-size: 0.9rem;
    }

    .menu-card {
        height: 200px;
    }

    .menu-card h2 {
        font-size: 1.1rem;
    }

    .section-overlay {
        padding: 20px;
    }
}

/* page menu cote a cote */
.page.menu-side-by-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: nowrap;
  margin-top: 120px;
  padding: 0 20px;
}

.page.menu-side-by-side .menu-image {
  width: 45%;
  max-width: none;
  margin-bottom: 0;
  border-radius: 15px;
}

/* ============================================
   SECTION AVIS GOOGLE
   ============================================ */

.google-reviews {
    background: #111;
    padding: 70px 20px 60px;
    text-align: center;
}

.reviews-header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 7px 18px;
    border-radius: 50px;
    color: #aaa;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.reviews-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.global-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    font-size: 1.4rem;
    color: #f5c518;
    letter-spacing: 2px;
}

.rating-count {
    color: #777;
    font-size: 0.85rem;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #111;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-google-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
    max-width: 1050px;
    margin: 0 auto 40px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.stars-small {
    color: #f5c518;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.review-google-icon {
    opacity: 0.6;
    flex-shrink: 0;
}

.review-card p {
    color: #b0b0b0;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 0 12px;
    font-style: italic;
}

.review-date {
    color: #555;
    font-size: 0.75rem;
}

.reviews-cta {
    margin-top: 10px;
}

.btn-google-reviews-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-google-reviews-big:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .global-rating {
        flex-direction: column;
        gap: 14px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 1.5rem;
    }
}