:root {
    --color-primary: #3E2C41;
    --color-secondary: #D9A5B3;
    --color-secondary-hover: #BFA2DB;
    --color-background: #FDF7F0;
    --color-card: #F3E6E8;
    --color-white: #FFFFFF;
    --color-error: #F67280;
    --color-success: #A7D7C5;
    --color-text: #5A5A5A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-background);
    color: var(--color-primary);
}

/* Добавяме плавен scroll за цялата страница */
html {
    scroll-behavior: smooth;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    background-color: var(--color-card);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.book-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: var(--color-secondary-hover);
}

.booking {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('../images/background_booking.png') center/cover;
}
/*url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3')*/
.booking-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: formSlideUp 0.6s ease forwards;
}

@keyframes formSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: fieldSlideIn 0.5s ease forwards;
}

.form-group:nth-child(2) { animation-delay: 0.1s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.3s; }
.form-group:nth-child(5) { animation-delay: 0.4s; }

@keyframes fieldSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    transform: translateY(0);
    color: var(--color-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-card);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(217, 165, 179, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: buttonFadeIn 0.5s ease 0.5s forwards;
}

@keyframes buttonFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 162, 219, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.booking-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 300px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.booking-message.success,
.booking-message.error {
    opacity: 1;
    transform: translateX(0);
}

.booking-message.success {
    background-color: var(--color-success);
    color: var(--color-white);
    animation: toastSlideIn 0.7s ease forwards, toastFadeOut 0.7s ease 2.5s forwards;
}

.booking-message.error {
    background-color: var(--color-error);
    color: var(--color-white);
    animation: toastSlideIn 0.7s ease forwards, toastFadeOut 0.7s ease 2.5s forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastFadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Добавяме икона към съобщението */
.booking-message::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
}

.booking-message.error::before {
    content: '✕';
}

/* Добавяме progress bar */
.booking-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    animation: progressBar 3s linear forwards;
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}


/* Стилове за заглавията */
h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

h2 i {
    color: var(--color-secondary);
    font-size: 2rem;
}

/* Добавяме анимация при зареждане на заглавията */
h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Добавяме hover ефект на иконите */
h2 i {
    transition: transform 0.3s ease;
}

h2:hover i {
    transform: scale(1.2) rotate(10deg);
}
/* Abdel */


body {
  font-family: 'Poppins', sans-serif;
}
 /* Styles spécifiques à Payment.html
           Ils réutilisent les variables déjà définies dans main.css
           pour rester cohérents avec le reste du site. */

.payment-page {
        min-height: 100vh;
        padding: 7rem 2rem 4rem;
        background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                    url('images/background_booking.png') center/cover;
    }

    .payment-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }

    .payment-card {
        max-width: 560px;
        margin: 2rem auto 0;
        padding: 2.5rem;
        background-color: var(--color-white);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        animation: formSlideUp 0.6s ease forwards;
    }

    .payment-intro {
        text-align: center;
        margin-bottom: 2rem;
    }

    .payment-intro p {
        color: var(--color-text);
        line-height: 1.7;
        margin-top: 0.8rem;
    }

    .payment-number-box {
        background-color: var(--color-card);
        border: 2px dashed var(--color-secondary);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .payment-number-label {
        display: block;
        font-size: 0.95rem;
        color: var(--color-text);
        margin-bottom: 0.6rem;
    }

    .payment-number {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-primary);
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .secondary-btn {
        display: inline-block;
        border: none;
        border-radius: 8px;
        padding: 0.85rem 1.2rem;
        background-color: var(--color-primary);
        color: var(--color-white);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .secondary-btn:hover {
        transform: translateY(-2px);
        opacity: 0.95;
        box-shadow: 0 5px 15px rgba(62, 44, 65, 0.2);
    }

    .upload-hint {
        font-size: 0.92rem;
        color: var(--color-text);
        margin-top: 0.5rem;
    }

    .image-preview-wrapper {
        display: none;
        margin-top: 1rem;
        text-align: center;
    }

    .image-preview-wrapper.active {
        display: block;
    }

    .image-preview {
        max-width: 100%;
        max-height: 280px;
        border-radius: 12px;
        border: 2px solid var(--color-card);
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        object-fit: cover;
    }

    .inline-feedback {
        margin-top: 0.8rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--color-error);
        display: none;
    }

    .inline-feedback.visible {
        display: block;
    }

    .payment-note {
        margin-top: 1.5rem;
        padding: 1rem 1.2rem;
        background-color: var(--color-background);
        border-left: 4px solid var(--color-secondary);
        border-radius: 8px;
        color: var(--color-text);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    @media (max-width: 640px) {
        .payment-page {
            padding: 6.5rem 1rem 3rem;
        }

        .payment-card {
            padding: 1.5rem;
        }

        .payment-number {
            font-size: 1.6rem;
            letter-spacing: 1px;
        }
    }
    .payment-summary {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.payment-summary h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f2a2a;
}

.payment-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #9a7b52;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.summary-value {
    font-size: 0.98rem;
    color: #2f2a2a;
    word-break: break-word;
}

@media (max-width: 640px) {
    .payment-summary-grid {
        grid-template-columns: 1fr;
    }
}
.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 14px;
}

.site-footer a {
  color: #ff7aa2; /* adapte à ta palette */
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}
.contact-section {
  padding: 40px 20px;
  background-color: #fdf7f9; /* adapte à ton thème */
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.contact-info p {
  margin: 8px 0;
  font-size: 16px;
}

.contact-info a {
  color: #ff7aa2;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map iframe {
  border-radius: 12px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 15px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 1;
}
body {
    padding-top: 80px; /* ajuste selon la hauteur de ton header */
}

.hero {
    background: url('ton-image.jpg') center/cover no-repeat;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* assombrit l'image */
}

.hero-overlay {
    position: relative;
    color: white;
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #d4a5a5;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #b5838d;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 60px 0 30px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #d4a5a5;
    display: block;
    margin: 10px auto 0;
}
h1{
    font-family: Parisienne;
    font-size: 3.5rem;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 78px;
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-background);
  color: var(--color-primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #4b3450;
  min-width: 0;
  flex-shrink: 0;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text span {
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  text-decoration: none;
  color: #4b3450;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.8rem;
  color: #4b3450;
  cursor: pointer;
  padding: 4px 8px;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-overlay {
  max-width: 90%;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: white;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: white;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 30px 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .cta-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .brand-text span {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 14px 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 20px;
    border-top: 1px solid #f2e8ec;
    font-size: 1rem;
  }

  .nav-menu a:first-child {
    border-top: none;
  }

  .nav-menu.active {
    display: flex;
  }
}
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}
.hero {
  min-height: 75vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Parisienne', cursive;
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 30px 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  padding-top: 78px;
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-background);
  color: var(--color-primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

#services,
#booking,
#contact {
  scroll-margin-top: -25px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 85px;
  }

  #services,
  #booking,
  #contact {
    scroll-margin-top: 85px;
  }

  body {
    padding-top: 72px;
  }
}