/* ======================
   BASE STYLES 
   ====================== */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}   

/* ======================
   HEADER STYLES 
   ====================== */
.main-header {
    background: linear-gradient(to right, #fff, #fff 30%, #ffe4e1);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-title-wrapper {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #d87093;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d87093;
    transition: width 0.3s ease;
}

.site-title-wrapper:hover .site-title {
    transform: scale(1);
}

.site-title-wrapper:hover .title-underline {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    position: relative;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 500;
    color: #d87093;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.nav-links a span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #d87093;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::before {
    height: 100%;
}

/* When scrolled */
.main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .site-title {
    font-size: 24px;
}

/*
    HERO SECTION
*/

.hero-section {
    background: url("images/SzalonTeljes1.jpg") center/cover no-repeat;
    padding: 120px 20px;
    color: white;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: #d87093;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #c35b7e;
}


/* ======================
   SERVICE SELECTOR 
   ====================== */
.service-selector {
    display: flex;
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Hover effects */
.option:hover {
    flex-grow: 3;
}

.option:not(:hover) {
    flex-grow: 0.5;
}

/* Option content */
.option-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transform: none;
    margin: 0;
    transform-origin: center center;
}

.option-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

/* Text rotation effects */
.service-selector:hover #lash:not(:hover) .option-text {
    transform: rotate(-90deg);
    transform-origin: center center;
}

.service-selector:hover #cosmetic:not(:hover) .option-text {
    transform: rotate(90deg);
    transform-origin: center center;
}

/* Specific service backgrounds */
#lash {
    background-image: url('images/Pillapicker.jpg');
}

#cosmetic {
    background-image: url('images/KozmetikaPicker.jpg');
}

@media (max-width: 768px) {
  /* Mobilon a szolgáltatás feliratok ne forduljanak el */
  .option-text {
    transform: none !important;
    font-size: 1.1rem;
    white-space: nowrap;
  }

  /* Az opciók (gombok) ne legyenek túl magasak */
  .service-selector {
    flex-direction: column;
    height: auto;
  }

  .option {
    flex: none;
    height: 120px;
  }
}



/* ======================
   BOOKING SECTION 
   ====================== */
.booking-section,
.booking-wrapper {
    padding: 60px 20px;
    background-color: #fff0f5;
    text-align: center;
}

.booking-section h2,
.booking-wrapper h2 {
    color: #e24c7e;
    font-size: 32px;
    margin-bottom: 30px;
}

.booking-wrapper iframe {
    width: 100%;
    max-width: 1000px;
    height: 800px;
    border: none;
    border-radius: 18px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 10px 30px -15px rgba(0, 0, 0, 0.2),
        0 0 0 5px rgba(255, 255, 255, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-wrapper iframe:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 30px 60px -10px rgba(0, 0, 0, 0.3),
        0 15px 35px -15px rgba(0, 0, 0, 0.25),
        0 0 0 5px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .booking-wrapper iframe {
        height: 600px;
        transform: none;
    }
    
    .booking-wrapper iframe:hover {
        transform: translateY(-3px);
    }
}

/* ======================
   CONTACT SECTION 
   ====================== */
.contact-main {
    background-color: #fff0f5;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-container h2 {
    color: #d87093;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.contact-info {
    margin: 30px 0;
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info a {
    color: #d87093;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/*
    ABOUT ME
*/

.about-section {
  padding: 80px 20px;
  background-color: #fef7f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #d87093;
  font-family: 'Playfair Display', serif;
}

.about-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-text {
  font-family: 'Merriweather', serif; /* szép, jól olvasható serif betűtípus */
  flex: 1;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#about-paragraph-1 {
  background-color: #fde7ef; /* nagyon világos rózsaszín */
  padding: 20px;
  border-radius: 40px;
  opacity: 0;
}

/* Sötétebb rózsaszín háttér a második bekezdéshez */
#about-paragraph-2 {
  background-color: #ffdae6; /* egy árnyalattal sötétebb rózsaszín */
  padding: 20px;
  border-radius: 40px;
  opacity: 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  opacity: 0;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#about-paragraph-1.in-view {
  animation: fadeInLeft 2s ease-out forwards;
}

#about-paragraph-2.in-view {
  animation: fadeInUp 2s ease-out forwards;
}

.about-image.in-view {
  animation: fadeInRight 2s ease-out forwards;
}

/* Animációk */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ======================
   FOOTER STYLES 
   ====================== */
.main-footer {
    background: linear-gradient(135deg, #e8a6b3, #d87093);
    color: white;
    padding: 30px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column.contact-info {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    padding-bottom: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 6px;
    background-color: white;
    border-radius: 50px;
}

.social-links {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    color: #d87093;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* Increased space */
    font-size: 0.95rem;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.fa-map-marker-alt, 
.fa-phone, 
.fa-envelope {
    font-size: 1em;
}



/* ======================
   MEDIA QUERIES 
   ====================== */
@media (max-width: 768px) {
    .booking-wrapper iframe {
        height: 600px;
    }
}

@media (max-width: 600px) {
    .footer-container,
    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-container {
        gap: 20px;
    }
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */
.testimonials-section {
    padding: 60px 20px;
    background-color: #fff9fa;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
    gap: 200px;
}

.testimonial-container.reverse {
    flex-direction: row-reverse;
    gap: 100px
}

.testimonial-text {
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonial-text.left {
    transform: translateX(-50px);
}

.testimonial-text.right {
    transform: translateX(50px);
}

.testimonial-text.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-text .author {
    font-weight: bold;
    color: #d87093;
    font-style: normal;
    text-align: right;
}

.testimonial-image {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.testimonial-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.round-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid rgb(252, 201, 241);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-container,
    .testimonial-container.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-text {
        width: 100%;
    }
    
    .testimonial-text.left,
    .testimonial-text.right {
        transform: translateY(30px);
    }
    
@media (max-width: 768px) {
    .round-image {
        width: 240px;
        height: 240px;
    }
}

}

.section-divider-wrapper {
  text-align: center;
  margin: 60px auto;
}

.section-title-inline {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  color: #d87093;
  margin-bottom: 12px;
}

.section-divider {
  height: 5px;
  width: 80%;
  background-color: #d87093;
  margin: 0 auto;
  border-radius: 999px;
}

/* ======================
   CERTIFICATES SECTION
   ====================== */
.certificates-section {
    padding: 60px 20px;
    background-color: #fff9fa;
}

.certificates-container {
    max-width: 1100px;
    margin: 0 auto;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.certificate-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.certificate-item.reverse {
    flex-direction: row-reverse;
}

.certificate-image {
    flex: 1;
}

.certificate-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certificate-image img:hover {
    transform: scale(1.03);
}

.certificate-text {
    flex: 1;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.certificate-text h3 {
    color: #d87093;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.certificate-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Merriweather', serif;
}

/* ======================
   PHILOSOPHY SECTION
   ====================== */
.philosophy-section {
    padding: 60px 20px;
    background-color: #fef7f9;
}

.philosophy-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-icon {
    font-size: 40px;
    color: #d87093;
    margin-bottom: 20px;
}

.philosophy-box h3 {
    color: #d87093;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.philosophy-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Merriweather', serif;
}

/* ======================
   RESPONSIVE ADJUSTMENTS
   ====================== */
@media (max-width: 768px) {
    .certificate-item,
    .certificate-item.reverse {
        flex-direction: column;
    }
    
    .philosophy-container {
        flex-direction: column;
        align-items: center;
    }
    
    .philosophy-box {
        max-width: 100%;
    }
}

/* ======================
   MŰSZEMPILLA PAGE STYLES
   ====================== */

/* Price Section */
.price-section {
    padding: 60px 20px;
    background-color: #fff9fa;
}

.price-container {
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card h3 {
    color: #d87093;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #f8d7e3;
    padding-bottom: 10px;
}

.price-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    flex: 2;
    font-size: 16px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.service-price {
    flex: 1;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    color: #d87093;
    font-family: 'Montserrat', sans-serif;
}

.service-duration {
    flex: 1;
    text-align: right;
    font-size: 14px;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    background-color: #fef7f9;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(216, 112, 147, 0.9));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-caption p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

/* Description Section */
.description-section {
    padding: 60px 20px;
    background-color: #fff9fa;
}

.description-container {
    max-width: 1000px;
    margin: 0 auto;
}

.description-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.description-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.description-box h3 {
    color: #d87093;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.description-text p {
    margin-bottom: 20px;
}

.description-features {
    background: #fdf2f5;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d87093;
}

.description-features h4 {
    color: #d87093;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.description-features ul {
    list-style: none;
    padding: 0;
}

.description-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-family: 'Montserrat', sans-serif;
}

.description-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d87093;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .service-price,
    .service-duration {
        text-align: left;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .price-card,
    .description-box {
        padding: 20px;
    }
}

.price-notice {
    background: linear-gradient(135deg, #d87093, #e8a6b3);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(216, 112, 147, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.price-notice p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.price-notice strong {
    font-weight: 700;
    font-size: 20px;
}

/* ======================
   RÓLAM OLDAL STÍLUSAI
   ====================== */

/* Rólam oldal új stílusai */
.about-hero {
    background: linear-gradient(135deg, #ffe4e1 0%, #f8d7e3 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z" fill="%23d87093"/></svg>') repeat;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h2 {
    font-size: 48px;
    color: #d87093;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-text {
    text-align: left;
    max-width: 400px;
}

.profile-text h3 {
    color: #d87093;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.profile-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #fff9fa;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.philosophy-icon {
    font-size: 40px;
    color: #d87093;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    color: #d87093;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-text {
        text-align: center;
    }
    
    .about-hero h2 {
        font-size: 36px;
    }
}

/* ======================
   ANIMATIONS - JAVÍTOTT
   ====================== */

/* Szolgáltatás címek animációja */
.service-title-animation {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-title-animation.animate {
    animation: titlePulse 2s ease-in-out;
}

@keyframes titlePulse {
    0% {
        transform: scale(1);
        color: #d87093;
    }
    25% {
        transform: scale(1.15);
        color: #ffffff;
        text-shadow: 0 0 20px rgba(216, 112, 147, 0.8);
    }
    50% {
        transform: scale(1.1);
        color: #ffffff;
        background: linear-gradient(45deg, #d87093, #e8a6b3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    75% {
        transform: scale(1.05);
        color: #ffffff;
    }
    100% {
        transform: scale(1);
        color: #d87093;
    }
}

/* ======================
   FOGLALÁS CTA GOMB
   ====================== */
.booking-cta-section {
    background: linear-gradient(135deg, #fff9fa 0%, #ffe4e1 100%);
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.booking-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-cta-container h3 {
    color: #d87093;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.booking-cta-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d87093, #e8a6b3);
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(216, 112, 147, 0.4);
    position: relative;
    overflow: hidden;
}

.booking-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.booking-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 112, 147, 0.6);
}

.booking-cta-btn:hover::before {
    left: 100%;
}

.booking-cta-btn i {
    font-size: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .price-notice {
        margin: 30px 20px;
        padding: 15px 20px;
    }
    
    .price-notice p {
        font-size: 16px;
    }
    
    .booking-cta-container h3 {
        font-size: 28px;
    }
    
    .booking-cta-container p {
        font-size: 16px;
    }
    
    .booking-cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* ======================
   ÚJ FŐOLDAL STÍLUSOK
   ====================== */

/* Split section stílusok */
.split-section {
    display: flex;
    padding: 60px 20px;
    background-color: #fff9fa;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-image-container {
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.intro-text {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #555;
}

.intro-text p {
    margin-bottom: 15px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #d87093;
    font-style: normal;
    text-align: right;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
  /* A fejléc linkek mobilon */
  .nav-links {
    flex-wrap: wrap;         /* Engedi, hogy a gombok több sorba törjenek */
    justify-content: center; /* Középre rendezés */
    gap: 8px;                /* Kis távolság a gombok között */
  }

  .nav-links a {
    font-size: 14px;         /* Kisebb betűméret mobilon */
    padding: 8px 12px;       /* Kisebb padding, hogy ne lógjon ki */
    white-space: nowrap;     /* Ne törje meg a szöveget több sorba */
    flex: 1 1 auto;          /* Rugalmas szélesség */
    text-align: center;      /* Középre a szöveg */ 
    min-width: 80px;         /* Minimum szélesség, hogy ne legyen túl szűk */
    box-sizing: border-box;  /* A padding ne növelje a szélességet */
  }
}

@media (max-width: 768px) {
    .container {
        width: 100%;       /* teljes szélesség mobilon */
        max-width: 100%;   /* ne maradjon max-width */
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 0 10px;   /* kis padding a széleken */
        box-sizing: border-box;
    }

    .site-title-wrapper {
        margin: 10px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .site-title {
        text-align: center;
        margin: 0;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .nav-links a {
        flex: 1 1 auto;
        min-width: 80px;
        text-align: center;
        padding: 8px 10px;
        box-sizing: border-box;
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-links a:nth-child(4) {
        display: none !important;
    }
}



