:root {
    --blush-pink: #FFD1DC;
    --baby-pink: #F4C2C2;
    --cotton-candy: #FFB7D5;
    --rose-quartz: #F7CAC9;
    --pale-pink: #FADADD;
    --soft-pink: #E8B4BC;
    --deep-pink: #DEAA9B;
    --text-dark: #5D4037;
    --text-light: #795548;
    --background-light: #FFF9FB;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: var(--deep-pink) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--cotton-candy);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--deep-pink) !important;
}

.nav-link:hover:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(rgba(255, 249, 251, 0.9), rgba(255, 249, 251, 0.7)), url('https://images.unsplash.com/photo-1549056572-75914d6d7e1a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    color: var(--text-dark);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
}

.hero-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") center bottom repeat-x;
    background-size: 1200px 50px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--blush-pink), var(--cotton-candy));
    margin: 15px auto;
    border-radius: 3px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--pale-pink);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--blush-pink), var(--cotton-candy));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(244, 194, 194, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--deep-pink);
    margin-bottom: 20px;
    background: var(--pale-pink);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 20px;
}

.benefits-section {
    background: linear-gradient(to bottom, var(--blush-pink), var(--pale-pink));
    padding: 80px 0;
    position: relative;
}

.benefits-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") center top repeat-x;
    background-size: 1200px 50px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--deep-pink);
    margin-bottom: 15px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid var(--pale-pink);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    color: var(--blush-pink);
    font-family: 'Nunito', sans-serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    font-weight: 500;
    color: var(--deep-pink);
}

.btn-primary {
    background: linear-gradient(to right, var(--cotton-candy), var(--deep-pink));
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    color: white;
    box-shadow: 0 5px 15px rgba(222, 170, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(222, 170, 155, 0.4);
    color: white;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--deep-pink);
    font-size: 1.2rem;
    background: var(--pale-pink);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
}

footer {
    background: linear-gradient(to right, var(--blush-pink), var(--cotton-candy));
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--text-dark);
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
    background: rgba(255, 255, 255, 0.5);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--deep-pink);
    background: white;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.5);
}

.cute-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 3rem;
    color: var(--blush-pink);
    transform: rotate(-15deg);
}

.decoration-2 {
    bottom: 15%;
    right: 5%;
    font-size: 2.5rem;
    color: var(--cotton-candy);
    transform: rotate(10deg);
}

.heart-icon {
    color: var(--deep-pink);
    margin: 0 5px;
}

.price-tag {
    display: block; /* biztos, hogy új sorba kerül */
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 12px;
    color: #000;

}

.text-gradient {
    background: linear-gradient(to right, var(--cotton-candy), var(--deep-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





.age-tag {
    display: inline-flex; /* inline, de tartalomhoz igazodik */
    align-items: center;  /* ikon és szöveg középre igazítva */
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #E8B4BC;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.age-tag i {
    margin-right: 6px; /* ikon és szöveg között */
    color: #fff
}

