@font-face {
  font-family: 'ZapfChancery';
  src: url('fonts/ZapfChanceryStd-Light.woff2') format('woff2'),
       url('fonts/ZapfChanceryStd-Light.woff') format('woff'),
       url('fonts/ZapfChanceryStd-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MoreSugar-Thin';
  src: url('fonts/MoreSugar-Thin.woff2') format('woff2'),
       url('fonts/MoreSugar-Thin.woff') format('woff'),
       url('fonts/MoreSugar-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #3B2E21;
  --accent-color: #c8a97e;
  --text-color: #333333;
  --light-bg: #f9f5f0;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'ZapfChancery', serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--accent-color) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  z-index: -1;
}

.main-container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 20px 50px var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

/* Left column styles */
.text-column {
  flex: 1;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.logo-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  opacity: 0.1;
  z-index: -1;
}

.text-column h1 {
  font-family: 'MoreSugar-Thin', 'Georgia', serif;
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.1;
}

.text-column h1 span {
  display: block;
  font-size: 2.5rem;
  color: var(--accent-color);
}

.separator {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--accent-color);
  opacity: 0.3;
}

.separator span {
  padding: 0 15px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.tagline {
  font-family: 'MoreSugar-Thin', 'Georgia', serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-style: italic;
}

.text-column p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.restaurant-details {
  margin-top: 40px;
}

.detail-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--accent-color);
}

.detail-text h3 {
  font-family: 'MoreSugar-Thin', 'Georgia', serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: normal;
}

.detail-text p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Right column styles */
.image-column {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fcfaf7;
}

.image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.featured-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.075;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.reservation-button {
  margin-top: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'MoreSugar-Thin', 'Georgia', serif;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(59, 46, 33, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.reservation-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.reservation-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(200, 169, 126, 0.3);
}

.reservation-button:hover::before {
  left: 100%;
}

.button-text {
  margin-right: 10px;
}

.button-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.reservation-button:hover .button-icon {
  transform: translateX(5px);
}

/* Logo styling */
.logo {
  width: auto;  /* Au lieu de 80px fixe */
  height: auto; /* Au lieu de 80px fixe */
  max-height: 100px; /* Hauteur maximale augmentée */
  max-width: 100%; /* S'assure que le logo ne dépasse pas son conteneur */
  object-fit: contain; /* Assure que l'image entière est visible sans être coupée */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto 20px;
  display: block;
  z-index: 10;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.corner-accent {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  opacity: 0.05;
  border-radius: 200px 0 0 0;
  z-index: -1;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main-container {
    width: 95%;
    max-width: 1000px;
  }
  
  .text-column,
  .image-column {
    padding: 50px 40px;
  }
  
  .reservation-button {
    font-size: 1.3rem;
    padding: 14px 28px;
  }
}

@media (max-width: 992px) {
  .text-column h1 {
    font-size: 3rem;
  }
  
  .text-column h1 span {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .image-frame {
    max-width: 400px;
  }
}


@media (max-width: 768px) {
  body {
    padding: 20px 0;
  }
  
  .main-container {
    flex-direction: column;
    width: 92%;
  }
  
  .text-column {
    order: 2;
    padding: 40px 25px;
  }
  
  .image-column {
    order: 1;
    padding: 30px 25px;
  }
  
  .image-frame {
    max-width: 100%;
    margin-bottom: 0;
  }
  
  .reservation-button {
    margin: 30px auto 0 auto;
    font-size: 1.2rem;
    padding: 12px 24px;
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }
  
  .restaurant-details {
    margin-top: 30px;
  }
  
  .detail-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .main-container {
    width: 95%;
  }
  
  .text-column,
  .image-column {
    padding: 30px 20px;
  }
  
  .text-column h1 {
    font-size: 2.5rem;
  }
  
  .text-column h1 span {
    font-size: 1.5rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .text-column p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .separator span {
    padding: 0 10px;
    font-size: 1rem;
  }
  
  .reservation-button {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
  
  .detail-text h3 {
    font-size: 1.1rem;
  }
  
  .detail-text p {
    font-size: 0.9rem;
  }
  
}

@media (max-width: 400px) {
  .text-column,
  .image-column {
    padding: 25px 15px;
  }
  
  .text-column h1 {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .reservation-button {
    font-size: 1rem;
    padding: 10px 18px;
  }
  
  .detail-item {
    flex-direction: column;
  }
  
  .detail-icon {
    margin-bottom: 5px;
  }
}