/* ===== CUPBUN ===== */ 

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
--pink: #F7C6D9; /* Hero / highlights */
--deep-blue: #002168; /* Body text */
--gold: #C9A227; /* Buttons / accents */
--cream-bg: #FFF8F3; /* Page background */
--warm-beige: #F3E5D8; /* Sections / cards */
--cocoa: #6B4226; /* Headings */
}


/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--deep-blue);
  line-height: 1.6;
  position: relative;

  /* body background */
  background-image: url("../Images/background/opt2.jpg");
  background-size: 300px;
  background-repeat: repeat;
  background-attachment: fixed;
}

html, body {
  overflow-x: hidden;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  color: var(--pink);
}

.site-wrapper {
  background: rgba(255, 248, 243, 0.82);
  min-height: 100vh;
}

/* ===== NAVBAR ===== */

header {
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;

  /* Slightly transparent to show body background */
  background: rgba(255,248,243,0.5);
  
}

header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

header img {
  height: 100px;
  width: auto;
}

nav a {
  text-decoration: underline;
  color: var(--deep-blue);
  margin-left: 30px;
  font-weight: 700;
  transition: 0.3s;
}

nav a:hover {
  color: var(--gold);
}

/* ===== HERO ===== */

.hero {
  background: linear-gradient(rgba(247, 198, 217, 0.85),rgba(247, 198, 217, 0.85)),
  url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  padding: 120px 10%;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #700606;
}

.hero p {
  font-size: 1.1rem;
  color: var(--deep-blue);
  font-weight: 600;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 40px;
  margin-top: 25px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ===== SECTIONS ===== */

.section{
  padding: 90px 10%;
}

.section:nth-child(even){
  background: rgba(255, 248, 243, 0.92);
}

.section h2{
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--cocoa);
}

/* ===== CARDS ===== */

.card {
  background: white;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Flex for image left, info right */
.card-item {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  color: var(--gold);
  font-weight: bold;
  font-size: 15px;
}

/* ===== FORM ===== */

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
}

form button {
  background: var(--gold);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: var(--deep-blue);
}

/* ===== FOOTER ===== */

footer {
  background: var(--deep-blue);
  color: white;
  text-align: center;
  padding: 40px;
  margin-top: 60px;
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 18px;
  border-radius: 50px;
  display:flex;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp:hover {
  transform:scale(1.2);
}

/* ===== HORAIRES ===== */

.horaires {
  text-align: center;
}

.horaires-table {
  max-width: 600px;
  margin: 10px auto;
  background: #fdf8f3;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);

}

.horaires-table table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table th,
.horaires-table td {
  padding: 15px;
  text-align: left;
}

.horaires-table th {
  background-color: var(--pink);
  color: white;
}

.horaires-table tr:nth-child(even) {
  background-color: #f5e8d8;
}

.horaires h3{
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #74d7f1;
}

/* ===== GALLERY ===== */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-section {
  padding: 90px 5%;
}

.gallery-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--cocoa);
}

/* ===== Social Icons ===== */

.social-icons{
display:center;
gap:20px;
font-size:30px;
}

.social-icons a{
font-size:28px;
margin:10px;
}

.fa-facebook{
color:#1877F2;
}

.fa-instagram{
color:#E1306C;
}

.fa-tiktok{
color:black;
}

.fa-whatsapp{
color:#25D366;
}


.social-icons a:hover i{
transform:scale(1.5);
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-item {
    flex-direction: column;
    text-align: center;
  }
}