

:root {
    --orange:  #1c3cd9;
    --pink:    #ff9ecd;
    --yellow:  #ffd166;
    --green:   #8be9a6;
    --purple:  #c9a4ff;
    --blue:    #7dd9ff;
    --dark:    #1a1a2e;
    --radius:  18px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    background: #fff9f0;
    color: #333;
}

img { max-width: 100%; height: auto; display: block; }

/* ── NAVBAR ── */
.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(16px, 4vw, 40px);
    background: rgba(39, 39, 209, 0.821);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-family: 'Fredoka', sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.back-btn {
    color: var(--yellow);
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.back-btn:hover { color: white; }

/* ── HEADER ── */
.ps-header {
    position: relative;
    min-height: clamp(320px, 55vh, 520px);
    background: linear-gradient(135deg, #ff9ecd 0%, #ffce6d 35%, #8be9a6 65%, #7dd9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.ps-header-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 6vw, 60px);
}

.ps-badge {
    display: inline-block;
    background: rgba(255,255,255,0.55);
    color: var(--dark);
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(13px, 2.5vw, 16px);
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.ps-header h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(28px, 7vw, 64px);
    color: var(--dark);
    line-height: 1.1;
    text-shadow: 2px 3px 0px rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.ps-header h1 span { color: #c13a00; }

.ps-header p {
    font-size: clamp(15px, 3vw, 22px);
    color: var(--dark);
    font-weight: 600;
    opacity: 0.85;
}

/* floating emoji shapes */
.shape {
    position: absolute;
    font-size: clamp(24px, 5vw, 44px);
    animation: floaty 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.s1 { top: 12%; left: 8%;  animation-delay: 0s; }
.s2 { top: 20%; right: 10%; animation-delay: 1s; }
.s3 { bottom: 18%; left: 12%; animation-delay: 0.5s; }
.s4 { bottom: 12%; right: 8%; animation-delay: 1.5s; }

@keyframes floaty {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(8deg); }
}

/* ── SHARED SECTION STYLES ── */
section {
    padding: clamp(50px, 8vw, 100px) clamp(16px, 6vw, 80px);
}

.section-tag {
    display: inline-block;
    background: #fff3e0;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span { color: var(--orange); }

.section-sub {
    font-size: clamp(14px, 2.3vw, 17px);
    color: #666;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-align: center;
}

/* ── ABOUT SECTION ── */
.about-section {
    background: #fff;
}

.about-inner {
    display: flex;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-img {
    flex: 1;
    min-width: 260px;
    position: relative;
}

.about-img img {
    width: 100%;
    height: clamp(240px, 38vw, 400px);
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(0,0,0,0.13);
}

.img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    font-family: 'Fredoka', sans-serif;
}

.about-text {
    flex: 1;
    min-width: 260px;
}

.about-text p {
    font-size: clamp(14px, 2.2vw, 16px);
    color: #555;
    line-height: 1.8;
    margin-bottom: 13px;
}

.about-text strong { color: var(--orange); }

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feat {
    background: #fff3e0;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ── EXPERIENCE / OFFER ── */
.experience-section {
    background: linear-gradient(180deg, #fff9f0 0%, #fff3fb 100%);
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.offer-card {
    background: white;
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 34px) 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border-top: 4px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: center;
}

.offer-card:nth-child(1) { border-color: var(--pink); }
.offer-card:nth-child(2) { border-color: var(--blue); }
.offer-card:nth-child(3) { border-color: var(--purple); }
.offer-card:nth-child(4) { border-color: var(--yellow); }
.offer-card:nth-child(5) { border-color: var(--green); }
.offer-card:nth-child(6) { border-color: var(--orange); }

.offer-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.offer-icon {
    font-size: clamp(32px, 6vw, 46px);
    margin-bottom: 14px;
    display: block;
}

.offer-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(17px, 2.8vw, 21px);
    color: var(--dark);
    margin-bottom: 10px;
}

.offer-card p {
    font-size: clamp(13px, 2vw, 15px);
    color: #666;
    line-height: 1.7;
}

/* ── GALLERY ── */
.gallery-section {
    background: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid img {
    width: 100%;
    height: clamp(130px, 22vw, 220px);
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, #ff9ecd, #ffce6d, #8be9a6);
    padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 80px);
}

.cta-inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.cta-emoji {
    font-size: clamp(40px, 8vw, 64px);
    margin-bottom: 14px;
    display: block;
    animation: floaty 3s ease-in-out infinite;
}

.cta-inner h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(22px, 5vw, 38px);
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-inner p {
    font-size: clamp(14px, 2.3vw, 17px);
    color: rgba(26,26,46,0.75);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--dark);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.3vw, 16px);
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-ghost {
    background: rgba(255,255,255,0.55);
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.3vw, 16px);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover { background: rgba(255,255,255,0.8); }

/* ── FOOTER ── */
.ps-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
}