:root {
    /* Colors derived from the flyer */
    --clr-pink-primary: #ff1493;    /* Strong deep pink */
    --clr-pink-light: #ff69b4;      /* Hot pink / light pink */
    --clr-purple: #9c27b0;          /* Deep purple */
    --clr-purple-light: #ce93d8;
    --clr-yellow: #ffc107;          /* Fun accent */
    --clr-bg: #fffbfd;
    --clr-text: #333333;
    --clr-text-light: #666666;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-pink-primary), var(--clr-purple));
    --grad-soft: linear-gradient(135deg, rgba(255,105,180,0.1), rgba(156,39,176,0.1));
    
    /* Typography */
    --font-heading: 'Baloo 2', cursive, sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(156, 39, 176, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 20, 147, 0.25);
    --border-radius-lg: 30px;
    --border-radius-sm: 15px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    background-image: url('images/motyw.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--clr-purple);
    line-height: 1.2;
}

h2.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2.section-title span {
    color: var(--clr-pink-primary);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.bg-light-pink { background-color: rgba(255, 105, 180, 0.05); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--clr-purple);
    border: 2px solid var(--clr-purple);
}

.btn-outline:hover {
    background: var(--clr-purple);
    color: white;
    transform: translateY(-3px);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(156, 39, 176, 0.15);
    padding: 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-img-footer {
    height: 120px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--grad-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:not(.btn):hover {
    color: var(--clr-pink-primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 24px;
    font-size: 1.1rem;
    color: white !important; /* Forces white color on mobile dropdown too */
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--clr-purple);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(234, 153, 213, 0.1) 0%, rgba(137, 207, 240, 0.1) 100%);
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

.hero-content {
    width: 100%;
}

.hero-text-box {
    max-width: 600px;
    padding: 50px;
}

.badge {
    display: inline-block;
    background: var(--clr-yellow);
    color: var(--clr-purple);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--clr-purple);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--clr-text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Shape Dividers */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px); /* Fix pixel gap */
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: var(--clr-bg);
}

.shape-divider-bottom {
    bottom: -1px;
}

.shape-divider-bottom .shape-fill {
    fill: #ffffff;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr-pink-primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-yellow);
    line-height: 1;
    -webkit-text-stroke: 1px #d49c00;
}

.stat-text {
    font-weight: 600;
    color: var(--clr-purple);
}

.about-image-wrapper {
    position: relative;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Birthdays Section */
.subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.birthdays {
    position: relative;
}

.birthdays-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.birthdays-image-container {
    position: relative;
}

.birthdays-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 450px;
}

.special-offer {
    position: absolute;
    bottom: -20px;
    right: -20px;
    max-width: 300px;
    font-weight: 600;
    color: var(--clr-purple);
    font-size: 0.95rem;
    border: 2px solid var(--clr-pink-light);
    z-index: 2;
}

.philosophy-card {
    background: var(--grad-primary);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.1);
}

.icon-check {
    width: 30px;
    height: 30px;
    background: var(--clr-yellow);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    padding: 8px;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 2.5rem;
    background: var(--grad-soft);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-block h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.info-block p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

.phone-link {
    color: var(--clr-pink-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--clr-purple);
}

.hours-card {
    border-top: 5px solid var(--clr-pink-primary);
}

.hours-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    font-size: 1.1rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.weekend .day {
    color: var(--clr-pink-primary);
    font-weight: 600;
}

.hours-row .time {
    font-weight: 700;
    color: var(--clr-purple);
}

/* Footer */
footer {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-text);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/* Lightbox dla Galerii */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--clr-pink-primary);
    transform: scale(1.1);
}

/* Animations & Effects */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Scroll reveal animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .birthdays-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .special-offer {
        right: 0;
        bottom: -30px;
        width: 90%;
        margin: 0 auto;
        left: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        align-items: flex-start;
        padding-top: 120px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img { height: 90px; }

    .hero-text-box {
        padding: 30px 20px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    h2.section-title { font-size: 2.2rem; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        padding: 5px;
        border-radius: 12px;
    }
    
    .gallery-item img {
        height: 160px;
        border-radius: 8px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}
