body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffeaf4;
    color: #2a2032;
}

.page-bg {
    background: linear-gradient(180deg, #ffeaf4 0%, #fff5fb 60%, #ffeaf4 100%);
    min-height: calc(100vh - 80px);
}

.logo {
    height: 44px;
    width: auto;
    border-radius: 999px;
}

.brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: #ff7ab8;
}

.nav-link {
    font-weight: 500;
}

.hero {
    padding: 4rem 0 3rem;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #ff7ab8;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.badge-soft {
    background-color: rgba(255, 122, 184, 0.1);
    border: 1px solid rgba(255, 122, 184, 0.4);
    color: #c0407b;
    border-radius: 999px;
}

.card-pretty {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.price-label {
    letter-spacing: .16em;
    text-transform: uppercase;
}

.price-value {
    font-weight: 700;
}

/* Booking grid */
.slot-btn {
    margin: .25rem;
    min-width: 80px;
}

.slot-free {
    background-color: #ffffff;
    border: 1px solid #ffb6d9;
    color: #c0407b;
}

.slot-booked {
    background-color: #ff6f91;
    border-color: #ff6f91;
    color: #fff;
}

.slot-holiday {
    opacity: .4;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 1rem;
}

.btn-pretty {
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7ab8, #ff9fd2);
    border: none;
    color: white;
    font-weight: 600;
    padding-inline: 2rem;
}

.btn-pretty:hover {
    filter: brightness(0.95);
    color: white;
}

/* Carousel arrows – fekete kör + fehér ikon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
    position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    display: inline-block;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 5px;
}

/* Balra mutató nyíl */
.carousel-control-prev-icon::after {
    transform: rotate(135deg);
    margin-left: 4px;
}

/* Jobbra mutató nyíl */
.carousel-control-next-icon::after {
    transform: rotate(-45deg);
    margin-right: 4px;
}

/* Kör háttér */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background-color: #000 !important;
    border-radius: 50%;
    opacity: 0.85;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    gap: 4px;
}
.calendar-header div {
    padding: 4px 0;
}


/* ---------------------------
   PREMIUM HERO LOOK
----------------------------*/
.hero-premium {
    padding: 100px 0 80px;
    position: relative;
}

/* Floating sparkles */
.floating-sparkle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffffffaa 0%, #ffffff00 70%);
    filter: blur(4px);
    border-radius: 50%;
    animation: sparkleFloat 6s infinite ease-in-out;
}

.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.sparkle-3 { top: 40%; right: 3%; animation-delay: 3s; }

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Floating image */
.floating-image {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Gloss button */
.gloss-button {
    position: relative;
    overflow: hidden;
}

.gloss-button::after {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, #ffffff99, transparent);
    transform: skewX(-20deg);
    animation: gloss 3s infinite;
}

@keyframes gloss {
  0% { left: -80%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* ---------------------------
   PREMIUM SERVICE SECTION
----------------------------*/
.services-premium {
    background: linear-gradient(180deg, #fff0f8 0%, #ffe7f2 100%);
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.4rem;
    color: #ff7ab8;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.sparkle-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}



.btn-facebook {
  background: #1877f2;
  color: #fff;
  border: none;
}
.btn-facebook:hover {
  background: #145dbf;
  color: #fff;
}
.social-icon-fb {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #1877f2;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  margin-right: 8px;
}

