/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* Reset i bazowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --pink: #ff80bf;
    --dark-pink: #ff4da6;
    --light-pink: #ffbfe0;
    --white: #ffffff;
    --black: #222222;
    --dark-gray: #333333;
    --medium-gray: #555555;
    --light-gray: #f5f5f5;
    --gradient-1: linear-gradient(to right, var(--pink), #b24592);
    --gradient-2: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --neon-glow: 0 0 10px rgba(255, 77, 166, 0.8), 0 0 20px rgba(255, 77, 166, 0.6), 0 0 30px rgba(255, 77, 166, 0.4);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
}

a {
    text-decoration: none;
    color: inherit;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
}

ul {
    list-style: none;
}

/* Usunięto sekcję Custom Cursor */

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
}

.shape1 {
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--pink), #b24592);
    animation: float 20s ease-in-out infinite;
}

.shape2 {
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-pink), var(--pink));
    animation: float 15s ease-in-out infinite reverse;
}

.shape3 {
    bottom: 10%;
    left: 20%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff9a9e, var(--pink));
    animation: float 25s ease-in-out infinite;
}

.shape4 {
    top: 30%;
    left: 40%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-pink), #b24592);
    animation: float 18s ease-in-out infinite reverse;
}

.shape5 {
    top: 60%;
    left: 70%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    animation: float 22s ease-in-out infinite;
}

.shape6 {
    top: 20%;
    right: 20%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--pink), #ff9a9e);
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-20px, 20px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(10px, -30px) rotate(10deg) scale(1);
    }
    75% {
        transform: translate(20px, 20px) rotate(5deg) scale(0.95);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--pink);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-pink), var(--pink));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Neon Button */
.neon-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: var(--pink);
    background-color: transparent;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    transition: 0.5s;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
}

.neon-btn.smaller {
    padding: 12px 24px;
    font-size: 14px;
}

.neon-btn:hover {
    color: var(--white);
    background: var(--pink);
    box-shadow: var(--neon-glow);
    text-shadow: 0 0 5px var(--pink);
}

.neon-btn span {
    position: absolute;
    display: block;
}

.neon-btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink));
    animation: neonBtn1 1s linear infinite;
    animation-delay: 0s;
}

.neon-btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--pink));
    animation: neonBtn2 1s linear infinite;
    animation-delay: 0.25s;
}

.neon-btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--pink));
    animation: neonBtn3 1s linear infinite;
    animation-delay: 0.5s;
}

.neon-btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--pink));
    animation: neonBtn4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes neonBtn1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes neonBtn2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

@keyframes neonBtn3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

@keyframes neonBtn4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

.btn-container {
    margin-top: 30px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--medium-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-text.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.6s;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    color: var(--black);
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
    color: var(--pink);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-0.025em, -0.0125em);
    opacity: 0.8;
}

.glitch-text::after {
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
    color: var(--dark-pink);
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
    transform: translate(0.025em, 0.025em);
    opacity: 0.8;
}

@keyframes glitch-anim-1 {
    0% { clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%); }
    10% { clip-path: polygon(0 15%, 100% 15%, 100% 45%, 0 45%); }
    20% { clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%); }
    30% { clip-path: polygon(0 70%, 100% 70%, 100% 90%, 0 90%); }
    40% { clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%); }
    50% { clip-path: polygon(0 45%, 100% 45%, 100% 65%, 0 65%); }
    60% { clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%); }
    70% { clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%); }
    80% { clip-path: polygon(0 10%, 100% 10%, 100% 25%, 0 25%); }
    90% { clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%); }
    100% { clip-path: polygon(0 55%, 100% 55%, 100% 70%, 0 70%); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%); }
    15% { clip-path: polygon(0 65%, 100% 65%, 100% 70%, 0 70%); }
    30% { clip-path: polygon(0 85%, 100% 85%, 100% 90%, 0 90%); }
    45% { clip-path: polygon(0 10%, 100% 10%, 100% 15%, 0 15%); }
    60% { clip-path: polygon(0 40%, 100% 40%, 100% 45%, 0 45%); }
    75% { clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%); }
    90% { clip-path: polygon(0 75%, 100% 75%, 100% 80%, 0 80%); }
    100% { clip-path: polygon(0 20%, 100% 20%, 100% 25%, 0 25%); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(0.5deg); }
    20% { transform: skew(-1deg); }
    30% { transform: skew(0deg); }
    40% { transform: skew(-0.5deg); }
    50% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    70% { transform: skew(0.5deg); }
    80% { transform: skew(-0.25deg); }
    90% { transform: skew(0.25deg); }
    100% { transform: skew(0deg); }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.sticky {
    padding: 15px 7%;
}

.logo h1 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.logo span {
    color: var(--pink);
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--black);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--pink);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--gradient-1);
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
    position: relative;
    z-index: 10;
    display: none;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('https://images.unsplash.com/photo-1604654894611-6973b376cbde') center/cover no-repeat;
    opacity: 0.4;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 10px;
    font-size: 18px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* Services */
.services {
    background-color: var(--white);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    position: relative;
    width: calc(25% - 30px);
    min-width: 280px;
    height: 300px;
    perspective: 1000px;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.card-front {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.card-back {
    background: var(--gradient-2);
    color: var(--black);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-pink);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 34px;
    color: var(--pink);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--white);
}

.service-card:hover .service-icon i {
    color: var(--dark-pink);
}

.card-front h3 {
    font-size: 20px;
    margin: 15px 0;
    color: var(--black);
    font-weight: 600;
}

.card-back p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 16px;
}

.card-link {
    display: inline-block;
    color: var(--white);
    font-weight: 500;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.card-link:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1557647522-c8177ebc8568') center/cover fixed no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.parallax-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery */
.gallery-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--light-pink);
    color: var(--black);
    padding: 8px 20px;
    margin: 5px;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--box-shadow);
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item#img1 { background: url('https://images.unsplash.com/photo-1604654894611-6973b376cbde') center/cover; }
.gallery-item#img2 { background: url('https://images.unsplash.com/photo-1519014816548-bf5fe059798b') center/cover; }
.gallery-item#img3 { background: url('https://images.unsplash.com/photo-1571290274554-6a2eaa771e5f') center/cover; }
.gallery-item#img4 { background: url('https://images.unsplash.com/photo-1595560006870-013a40377628') center/cover; }
.gallery-item#img5 { background: url('https://images.unsplash.com/photo-1607779097040-26e80aa78e66') center/cover; }
.gallery-item#img6 { background: url('https://images.unsplash.com/photo-1643867271634-e25b93a4fb60') center/cover; }

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay-content p {
    color: var(--light-pink);
    font-size: 14px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay-content h3,
.gallery-item:hover .overlay-content p {
    transform: translateY(0);
}

.gallery-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Price Section */
.prices {
    background-color: var(--light-gray);
}

.price-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-column {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

.price-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-column.featured {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--light-pink);
}

.price-column.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 77, 166, 0.4);
}

.price-header {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.price-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--light-pink), transparent);
}

.price-header h3 {
    font-size: 24px;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.price-header h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--pink);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .service {
    font-weight: 400;
    color: var(--medium-gray);
    font-size: 15px;
}

.price-item .price {
    font-weight: 700;
    color: var(--pink);
}

/* Contact */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--pink);
}

.contact-icon i {
    font-size: 20px;
    color: var(--pink);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--medium-gray);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 18px;
    color: var(--pink);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-btn:hover i {
    color: var(--white);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}

.form-row .form-group {
    width: 50%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: var(--black);
    outline: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
}

.form-group input:focus + .form-label .label-content,
.form-group select:focus + .form-label .label-content,
.form-group textarea:focus + .form-label .label-content,
.form-group input:not(:placeholder-shown) + .form-label .label-content,
.form-group select:valid + .form-label .label-content,
.form-group textarea:not(:placeholder-shown) + .form-label .label-content {
    transform: translateY(-130%);
    font-size: 12px;
    color: var(--pink);
}

.form-label {
    position: absolute;
    top: 12px;
    left: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.date-label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 12px;
    color: var(--medium-gray);
}

.label-content {
    transition: all 0.3s ease;
    color: var(--medium-gray);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff80bf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.form-group select option:first-child {
    color: var(--medium-gray);
}

.form-group select option {
    color: var(--black);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo, .footer-links, .footer-hours, .footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--pink);
}

.footer-links h4, .footer-hours h4, .footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after, .footer-hours h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--pink);
    bottom: 0;
    left: 0;
}

.footer-links ul li, .footer-hours ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--pink);
    padding-left: 5px;
}

.newsletter-input {
    position: relative;
    margin-bottom: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 5px;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--pink);
}

.footer-newsletter input:focus + .form-label .label-content,
.footer-newsletter input:not(:placeholder-shown) + .form-label .label-content {
    transform: translateY(-130%);
    font-size: 12px;
    color: var(--pink);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 7%;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Usunięto cursor: none; aby przywrócić standardowy kursor */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
/* Dodaj do style.css */
.contact-info-only {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-only .contact-info {
    width: 100%;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact-info-only .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.contact-info-only .contact-icon {
    margin-bottom: 15px;
    margin-right: 0;
    width: 70px;
    height: 70px;
}

.contact-info-only .social-media {
    justify-content: center;
    margin-top: 40px;
}

.back-to-top:hover {
    background-color: var(--dark-pink);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Media Queries */
@media (max-width: 991px) {
    .burger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .hero h2 {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-card {
        width: calc(50% - 30px);
    }

    .parallax-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100%;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .price-column.featured {
        transform: scale(1);
    }

    .price-column.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .parallax-section h2 {
        font-size: 28px;
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 70px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: var(--pink);
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    margin: 0 3px;
}

.spinner .bounce1 {
    animation-delay: -0.32s;
    background-color: var(--light-pink);
}

.spinner .bounce2 {
    animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    } 40% {
          transform: scale(1.0);
      }
}

/* Hide elements on load for animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="zoom-in-up"] {
    transform: translateY(50px) scale(0.9);
}

[data-aos="zoom-in-up"].aos-animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
    opacity: 1;
}

/* Add delay classes */
[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos-delay="400"] {
    transition-delay: 400ms;
}

[data-aos-delay="500"] {
    transition-delay: 500ms;
}