
body {
    font-family: Arial,  sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: linear-gradient(to right, #0072bc, #3b9dd5);
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.top-bar {
    font-size: 14px;
}

.top-bar a {
    text-decoration: none;
    color: white;
    
}

.top-bar i {
    margin-right: 5px;
    color: white;
}

.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    font-size: 14px;
    background-color: transparent;
    margin-left: 40px;
}

.top-bar p {
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}


@media screen and (max-width: 768px) {
    .top-bar {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 5px;
        padding: 10px;
        margin-right: 40px;

    }

    .top-bar p {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 70%;
    }
}

nav {
   
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
flex-wrap: wrap;

}

.logo img {
    height: 60px;
    border-radius: 12px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    background: url('images/background-edited3.png') no-repeat center 35% / cover;
    position: relative;
    filter: brightness(0.9);
    padding-top: 70px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.primary {
    background: #0072bc;
    color: white;
}

.primary:hover {
    background: #005a99;
}

.secondary {
    background: white;
    color: #0072bc;
    border: 1px solid #0072bc;
}

.secondary:hover {
    background: #0072bc;
    color: white;
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: white;
        padding: 10px;
    }

    nav ul {
        display: none !important;
    }

    .logo img {
        height: 50px;
    }

    .social-links {
        display: none;
    }
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #0072bc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.social-links a i {
    color: white;
    font-size: 20px;
}

.social-links .facebook {
    background-color: #5a5a5a;
}

.social-links a:hover {
    background-color: #005a99;
}

footer {
    background-color: #0072bc;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    max-width: 150px;
}

.footer-info, .footer-hours, .footer-social {
    text-align: left;
    margin: 10px;
    
    
}

.footer-info p,
.footer-hours p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    line-height: 1.4;
    flex-wrap: wrap;
    font-size: 15px;
}

.footer-info i,
.footer-hours i {
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.footer-info,
.footer-hours,
.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}



footer a,
.top-bar a {
    color: white;
    text-decoration: none;
    
}

.footer-social a {
    display: inline-block;
    margin: 5px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.footer-social a i {
    color: #0072bc;
    font-size: 20px;
}

.footer-social a:hover {
    background-color: #005a99;
}

.footer-button .btn {
    background-color: white;
    color: #0072bc;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.footer-button .btn:hover {
    background-color: #005a99;
    color: white;
}

@media (max-width: 768px) {
    .footer-info p,
    .footer-hours p {
      justify-content: flex-start;
      align-items: center;
      gap: 8px;
      font-size: 15px;
    }
  
    .footer-info i,
    .footer-hours i {
      font-size: 18px;
      min-width: 22px;
    }
  
    .footer-info,
    .footer-hours {
      width: 100%;
      padding: 0 20px;
      margin-left: 40px;
    }
  
    .footer-social {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer-social a {
      margin: 8px 0;
    }
  }
  
  
  

.manicure-gallery {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.gallery-container img:hover {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #ddd;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background-color: #0072bc;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.sidebar.show {
    right: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    color: white;
}

.sidebar ul li {
    margin: 20px 0;
    position: relative;
}

.sidebar ul li a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 10px 0;
    transition: background 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.close-sidebar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.overlay.show {
    display: block;
}

@media (min-width: 769px) {
    .sidebar {
        display: none;
    }
}



/* По подразбиране – desktop меню е видимо */
.desktop-menu {
    display: flex;
    gap: 20px;
    list-style: none;

}
  
  
  .desktop-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    
  }
  
  /* Скриваме desktop меню на мобилни */
  @media (max-width: 768px) {
    .desktop-menu {
      display: none;
    }
  }

  .sidebar-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0072bc;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.sidebar-social a:hover {
    background-color: #005a99;
    color: white;
}

/* Скрий бутоните от хедъра на мобилна версия */
@media (max-width: 768px) {
    .social-links {
        display: none !important;
    }
}

@media (max-width: 768px) {
    nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        height: 55px; /* малко по-малко на мобилна версия */
    }

    .hamburger {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
}

/* Заглавие с toggle */
.submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.submenu-toggle {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Подменю */
.submenu {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
}

.submenu li a {
    font-size: 14px;
    padding: 6px 10px;
    color: #f1f1f1;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Отворено меню с променен символ */
.has-submenu.open .submenu {
    display: flex;
}

.has-submenu.open .submenu-toggle {
    transform: rotate(45deg); /* Превръща + в × */
}

/* Центриране и адаптиране на таблиците за мобилни устройства */
@media (max-width: 768px) {
    .pricing-container {
      overflow-x: auto;
      padding: 0 10px;
    }
  
    .pricing-container table {
      width: 100%;
      border-collapse: collapse;
      margin: auto;
    }
  
    .pricing-container table th,
    .pricing-container table td {
      font-size: 14px;
      padding: 8px;
      text-align: center;
    }
  }

  .sidebar-book-btn {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}



.sidebar-book-btn .book-btn {
    background-color: white;
    color: #0072bc;
    font-weight: bold;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}

.sidebar-book-btn .book-btn:hover {
    background-color: #005a99;
    color: white;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
  }
  
  .facial-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }
  
  .facial-table th,
  .facial-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 16px;
  }

  .facial-table tbody tr td:first-child {
    color: #0072bc;
    font-weight: bold;
}

.facial-table tbody tr td:nth-child(2) {
    
    font-size: 16px;
    color: #444;
}


.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 30px;
}

.body-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.body-table th,
.body-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.body-table th {
    background-color: #0072bc;
    color: white;
    font-weight: bold;
}

.body-table td:first-child {
    color: #0072bc;
    font-weight: bold;
}

.body-table tr:last-child td {
    border-bottom: none;
}


.pr-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    text-align: center;
    color: #0072bc;
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.pr-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.pr-table th,
.pr-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}

.pr-table th {
    background-color: #0072bc;
    color: white;
    font-weight: bold;
}

.pr-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blue-text {
    color: #0072bc;
    font-weight: bold;
}



/* Responsive table */
@media (max-width: 768px) {
    .pr-table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    .pr-table table {
        width: 100%;
    }
}

.important-note {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: #e3f3fc;
    border-left: 6px solid #0072bc;
    padding: 15px 20px;
    font-size: 16px;
    font-style: italic;
    color: #003f63;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 114, 188, 0.1);
}



.info-box-mobile {
  display: none;
  background-color: #e6f4ff;
  border-left: 5px solid #0072bc;
  padding: 12px 16px;
  margin: 20px auto;
  font-style: italic;
  font-size: 15px;
  color: #003e63;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 90%;
}

@media screen and (max-width: 768px) {
  .info-box-mobile {
    display: block;
  }
}

/* REVIEWS SECTION */
.reviews-section {
  background: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
}

.reviews-section h2 {
  font-size: 30px;
  color: #0072bc;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1 1 280px;
  text-align: center;
}

.review-card .stars {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.review-card h4 {
  color: #0072bc;
  font-weight: bold;
}

.review-btn {
  background: #0072bc;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.review-btn:hover {
  background: #005a99;
}


.service-booking-cta {
  text-align: center;
  margin: 10px 0 15px;
}

.btn-booking {
  background: linear-gradient(45deg, #0072bc, #00bfff);
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(0, 114, 188, 0.3);
  transition: all 0.25s ease-in-out;
}

.btn-booking:hover {
  background: linear-gradient(45deg, #005a99, #0099cc);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 90, 153, 0.4);
}

/* Back to Top Button */
#backToTop {
  display: none; /* скрит по подразбиране */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #0072bc;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #005a99;
  transform: scale(1.1);
}


















  















