/*   Propriété exclusive et interdiction de reproduction
Le contenu intégral de ce document est la propriété exclusive de son auteur. Toute reproduction, représentation, 
distribution, adaptation, traduction, modification ou exploitation, partielle ou intégrale, de ce document, par quelque procédé que ce soit, sans l’autorisation écrite 
 et préalable de l’auteur, est strictement interdite. Seule la personne détentrice des droits – à savoir moi-même – en conserve l’usage et la jouissance exclusifs.

Tous droits réservés.*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1e3a8a;
    background: linear-gradient(to bottom, #eff6ff, #ffffff);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dbeafe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #2563eb;
    margin: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #dbeafe;
}

.nav-link-mobile {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #2563eb;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #eff6ff;
    transform: scale(1.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 128px;
    height: 128px;
    background: rgba(59, 130, 246, 0.1);
    top: 5rem;
    left: 2.5rem;
}

.circle-2 {
    width: 96px;
    height: 96px;
    background: rgba(59, 130, 246, 0.15);
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 1s;
}

.circle-3 {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.08);
    top: 50%;
    left: 25%;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #1d4ed8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-content h3 {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #1d4ed8;
    font-size: 0.875rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

section {
    border-top: 2px dashed #c7d2fe;
    padding-top: 4rem;
    margin-top: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #1d4ed8;
    max-width: 600px;
    margin: 0 auto;
}

.menu-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
    background: #eff6ff;
    border-radius: 12px;
    padding: 0.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tab-button {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tab-button.active {
    background: #2563eb;
    color: white;
}

.tab-icon {
    font-size: 1.125rem;
}

.tab-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.menu-content {
    margin-bottom: 3rem;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Carte en grille 2 colonnes × 2 lignes  */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;       /* texte à gauche / image à droite */
  grid-template-rows: auto 1fr;           /* header / description */
  grid-template-areas:
    "header image"
    "desc   image";
  gap: 0.5rem 1rem;                       /* espaces ligne / colonne */
  border: 1px solid #e2e8f0;              /* bordure de la carte (adaptable) */
  border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
}

/* Zone header (titre + prix) */
.menu-item > header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu-item > header h4 { margin: 0; }
.menu-item > header .price { margin: 0; }

.menu-item > p {
  grid-area: desc;
  margin: 0;}

/* Zone image : cadre + séparation  */
.menu-item > img {
  grid-area: image;
  justify-self: end;
  align-self: center;

  width: auto;
  max-height: auto;
  object-fit: cover;
  
  border-left: 1px dashed #cbd5e1;
  padding-left: 1rem;
  border-radius: 4px;
}


.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.item-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.menu-item:hover .item-header h4 {
    color: #2563eb;
}

.price {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
}

.menu-item p {
    color: #1d4ed8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.special-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #eff6ff;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem
}

.special-note p {
    color: #1e40af;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, white, #eff6ff);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
    text-align: center;
}

.card-icon {
    font-size: 1.25rem;
    color: #2563eb;
}

.card-header h3 {
    color: #1e3a8a;
    font-weight: 600;
    text-align: center;
}

.location {
    font-weight: 600;
    color: #1d4ed8;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.description {
    color: #2563eb;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    font-size: 1rem;
    color: #2563eb;
}

.practical-info {
    background: #eff6ff;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 1.5rem;
}

.practical-info h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.practical-info ul {
    list-style: none;
    color: #1d4ed8;
    font-size: 0.875rem;
}

.practical-info li {
    margin-bottom: 0.5rem;
}

.hours-card {
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: fit-content;
}

.hours-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dbeafe;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #1e3a8a;
}

.time {
    font-weight: 600;
    color: #1d4ed8;
}

.time.closed {
    color: #dc2626;
}

.hours-note {
    background: #eff6ff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.hours-note p {
    color: #1e40af;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

.beach-tip {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.beach-tip h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.beach-tip p {
    color: #1d4ed8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}


.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo p {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin: 0;
}

.footer-description {
    color: #bfdbfe;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact,
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bfdbfe;
    font-size: 0.875rem;
}

.hour-summary {
    display: flex;
    justify-content: space-between;
    color: #bfdbfe;
    font-size: 0.875rem;
}

.hour-summary .closed {
    color: #fca5a5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1e40af;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #bfdbfe;
    font-size: 0.875rem;
}

.back-to-top {
    background: none;
    border: none;
    color: #bfdbfe;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: white;
}

.arrow {
    background: #1d4ed8;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.3s ease;
}

.back-to-top:hover .arrow {
    background: #2563eb;
}

.footer-love {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-love p {
    color: #93c5fd;
    font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .menu-tabs .tab-button:nth-child(4),
    .menu-tabs .tab-button:nth-child(5) {
        grid-column: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .menu-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-tabs .tab-button:nth-child(5) {
        grid-column: span 2;
    }
    
    .tab-text {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Selection */
::selection {
    background: #2563eb;
    color: white;
}

::-moz-selection {
    background: #2563eb;
    color: white;
}

.mini-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 5px #333;
}

/* Photos Section */
.photos-section {
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, #eff6ff, #ffffff);
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo-item {
  flex: 0 0 100px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox.hidden {
    display: none;
}

.photo-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Animation en survol */
.photo-item:hover {
    transform: scale(1.05);
}

.menu-grid:has(.menu-item:only-child) {
  grid-template-columns: 1fr !important;
}

.menu-grid:has(.menu-item:only-child) .menu-item {
  justify-self: center;
}

@media (max-width: 480px) {
  .menu-tabs .tab-button {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: auto !important;
  }
  .menu-tabs .tab-button .tab-text {
    display: block !important;
    margin-top: 0.25rem;
    text-align: center;
  }
  .menu-tabs {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
    gap: 0.5rem;
  }
}

.footer-logo-img {
    width: 70px;
    height: 70px;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 58, 138, 0.600);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 90%;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.popup-title {
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.popup-content {
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.popup-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.popup-button:hover {
  background: #1d4ed8;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.copyable {
  cursor: pointer;
  color: #2563eb;
  font-weight: bold;
  text-decoration: underline dotted;
  position: relative;
}

.copyable::after {
  content: 'Copier';
  position: absolute;
  font-size: 0.7rem;
  color: #888;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}


.copyable:hover::after {
  opacity: 1;
}

.copyable.copied::after {
  content: 'Copié ✅';
  color: green;
  opacity: 1;
}
