/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette inspired by color analysis */
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #c0c0c0; /* Silver */
    --accent-warm: #ff6b6b;
    --accent-cool: #4ecdc4;
    --accent-purple: #a05fdf;
    --accent-pink: #ff8fa3;

    --dark: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
    --text-dark: #34495e;
    --text-light: #7f8c8d;

    --gradient-warm: linear-gradient(135deg, #ff6b6b, #feca57, #ff9ff3);
    --gradient-cool: linear-gradient(135deg, #4ecdc4, #6c5ce7, #a29bfe);
    --gradient-rainbow: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #a29bfe);

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    letter-spacing: 0px;
    transform: translateY(-1px);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #feca57 50%, #d4af37 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.3s ease;
}

.logo:hover::after {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: 100px 20px 50px;
    display: none;
    position: relative;
    overflow: hidden;
}

.section.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOME SECTION ===== */
.home-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    align-items: center;
}

.home-section.active {
    display: flex;
}

/* Accessories decoration overlapping main image */
.accessories-decoration {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 480px;
    height: auto;
    z-index: 0;
    opacity: 0.75;
    pointer-events: none;
    transform: translateY(-50%) rotate(-3deg);
    animation: fadeInLeftRotate 1.2s ease 0.3s backwards;
    transition: all 0.4s ease;
}

.accessories-decoration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.3);
}

.accessories-decoration:hover {
    opacity: 0.9;
    transform: translateY(-50%) rotate(-1deg) scale(1.02);
}

/* Couple with scarves decoration below accessories */
.couple-decoration {
    position: absolute;
    top: 70%;
    left: 5%;
    width: 480px;
    height: auto;
    z-index: 0;
    opacity: 0.75;
    pointer-events: none;
    transform: translateY(-50%) rotate(2deg);
    animation: fadeInLeftRotate2 1.2s ease 0.5s backwards;
    transition: all 0.4s ease;
}

.couple-decoration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.3);
}

.couple-decoration:hover {
    opacity: 0.9;
    transform: translateY(-50%) rotate(0deg) scale(1.02);
}

@keyframes fadeInLeftRotate {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-80px) rotate(-8deg);
    }
    to {
        opacity: 0.75;
        transform: translateY(-50%) translateX(0) rotate(-3deg);
    }
}

@keyframes fadeInLeftRotate2 {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-80px) rotate(6deg);
    }
    to {
        opacity: 0.75;
        transform: translateY(-50%) translateX(0) rotate(2deg);
    }
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid white;
    background-image: url('Janusz Kaczmarek.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-warm);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-rainbow);
    border-radius: 2px;
    margin: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.divider.center {
    margin: 1.5rem auto;
}

.hero-text .lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.highlight {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background: var(--gradient-rainbow);
    color: white;
}

/* Floating color circles */
.floating-colors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.color-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background: var(--accent-warm);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-cool);
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-purple);
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.circle-4 {
    width: 120px;
    height: 120px;
    background: var(--accent-pink);
    top: 30%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(-10px);
    }
    75% {
        transform: translateY(20px) translateX(5px);
    }
}

/* Fade in animations */
.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.fade-in-delay-4 {
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DECORATIVE SIDE ELEMENTS ===== */
/* Color swatches on the sides */
.color-swatches-left,
.color-swatches-right {
    position: absolute;
    top: 20%;
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.4;
    z-index: 1;
}

.color-swatches-left {
    left: 20px;
    animation: slideInLeft 1s ease 0.5s backwards;
}

.color-swatches-right {
    right: 20px;
    animation: slideInRight 1s ease 0.5s backwards;
}

.color-swatch {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Color wheel decorations */
.color-wheel-left,
.color-wheel-right {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 15%;
    opacity: 0.3;
    z-index: 1;
    background: conic-gradient(
        from 0deg,
        #ff0000 0deg,
        #ff8800 45deg,
        #ffff00 90deg,
        #00ff00 135deg,
        #00ffff 180deg,
        #0000ff 225deg,
        #ff00ff 270deg,
        #ff0000 315deg,
        #ff0000 360deg
    );
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: rotateWheel 20s linear infinite;
}

.color-wheel-left {
    left: -50px;
}

.color-wheel-right {
    right: -50px;
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Color fan decorations */
.color-fan-left,
.color-fan-right {
    position: absolute;
    top: 40%;
    width: 80px;
    height: 120px;
    opacity: 0.35;
    z-index: 1;
}

.color-fan-left {
    left: 30px;
    transform: rotate(-15deg);
    animation: fanSway 6s ease-in-out infinite;
}

.color-fan-right {
    right: 30px;
    transform: rotate(15deg);
    animation: fanSway 6s ease-in-out infinite reverse;
}

.fan-blade {
    position: absolute;
    width: 60px;
    height: 80px;
    border-radius: 30px 30px 0 0;
    transform-origin: bottom center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.fan-blade:nth-child(1) {
    transform: rotate(-30deg);
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.fan-blade:nth-child(2) {
    transform: rotate(-15deg);
    background: linear-gradient(135deg, #feca57, #ffd97d);
}

.fan-blade:nth-child(3) {
    transform: rotate(0deg);
    background: linear-gradient(135deg, #48dbfb, #7ee0ff);
}

.fan-blade:nth-child(4) {
    transform: rotate(15deg);
    background: linear-gradient(135deg, #a05fdf, #c084fc);
}

.fan-blade:nth-child(5) {
    transform: rotate(30deg);
    background: linear-gradient(135deg, #ff8fa3, #ffaec0);
}

@keyframes fanSway {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(-5deg);
    }
}

/* Vertical color palette strips */
.palette-strip-left,
.palette-strip-right {
    position: absolute;
    width: 40px;
    height: 300px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.25;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.palette-strip-left {
    left: 40px;
    background: linear-gradient(
        to bottom,
        #ff6b6b 0%,
        #feca57 16.66%,
        #48dbfb 33.33%,
        #1dd1a1 50%,
        #a05fdf 66.66%,
        #ff8fa3 83.33%,
        #d4af37 100%
    );
}

.palette-strip-right {
    right: 40px;
    background: linear-gradient(
        to bottom,
        #e0c3fc 0%,
        #ffecd2 16.66%,
        #fcb69f 33.33%,
        #ff9a9e 50%,
        #4ecdc4 66.66%,
        #c0c0c0 83.33%,
        #667eea 100%
    );
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 0.4;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 0.4;
        transform: translateX(0);
    }
}

/* ===== OFFER SECTION ===== */
.offer-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #ff9a9e 50%, #fecfef 75%, #e0c3fc 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    z-index: 10;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.package-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.package-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.package-info p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-center {
    text-align: center;
    margin: 3rem 0;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(78, 205, 196, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(160, 95, 223, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 143, 163, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.8;
}

/* Color palette circles for offer section */
.offer-section .color-palette-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.offer-section .palette-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: floatPalette 20s ease-in-out infinite;
}

.palette-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.palette-circle-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4ecdc4, #6c5ce7);
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.palette-circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a05fdf, #ff8fa3);
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

.palette-circle-4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes floatPalette {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

/* ===== PREPARATION SECTION ===== */
.preparation-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.preparation-section .section-title {
    color: var(--dark);
}

/* Color palette circles for preparation section */
.preparation-section .color-palette-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.preparation-section .palette-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    animation: floatPalette 20s ease-in-out infinite;
}

.preparation-section .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(78, 205, 196, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(160, 95, 223, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 143, 163, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.6;
}

.preparation-content {
    position: relative;
    z-index: 1;
}

.preparation-intro {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto 3rem;
}

.preparation-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.prep-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.prep-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prep-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.prep-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.preparation-important {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.preparation-important::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-rainbow);
}

.important-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.preparation-important h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.preparation-important p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
    padding-top: 140px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing-section.active {
    display: flex;
}

.pricing-section .section-title {
    color: var(--dark);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-section .color-palette-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.pricing-section .palette-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatPalette 6s ease-in-out infinite;
}

.pricing-section .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.pricing-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--gradient-rainbow);
    border-radius: 2px;
}

.service-name {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e0c458);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    opacity: 0.95;
}

.for-whom {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.audience-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.audience-box {
    background: white;
    padding: 5rem 2.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 200px;
}

.audience-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Icon Circle */
.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: -60px;
    border: 5px solid white;
}

.audience-icon {
    font-size: 4rem;
    font-weight: 900;
    color: white;
}

.audience-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Women's box - elegant rose/pink */
.audience-women {
    border-color: #ff9a9e;
}

.audience-women .icon-circle {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.audience-women .audience-title {
    color: #d6336c;
}

.audience-women:hover {
    box-shadow: 0 20px 50px rgba(255, 154, 158, 0.4);
}

/* Men's box - sophisticated blue */
.audience-men {
    border-color: #667eea;
}

.audience-men .icon-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.audience-men .audience-title {
    color: #4a5fc1;
}

.audience-men:hover {
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.pricing-cta {
    text-align: center;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-subtext {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.pricing-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #e0c458);
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.pricing-cta .cta-button::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;
}

.pricing-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.pricing-cta .cta-button:hover::before {
    left: 100%;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 140px;
}

.contact-section .section-title,
.contact-section .divider {
    color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 100%;
}

.contact-photo {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-photo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    transition: all 0.3s ease;
}

.contact-photo img:hover {
    transform: scale(1.02);
}

.contact-card h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-item .icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
}

.contact-item .info {
    flex: 1;
}

.contact-item label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-item a {
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rainbow);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.contact-image .image-placeholder-contact {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: white;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid white;
    background-image: url('JK.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-image .image-placeholder-contact:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 1rem;
        gap: 0.3rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 10px;
        font-size: 1.05rem;
    }

    .nav-container {
        padding: 1rem 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-photo img {
        max-width: 280px;
    }

    /* Smaller decorative images on tablets */
    .accessories-decoration {
        width: 320px;
        left: 3%;
        opacity: 0.65;
    }

    .couple-decoration {
        width: 320px;
        left: 3%;
        opacity: 0.65;
    }

    /* Hide decorative elements on tablets */
    .color-swatches-left,
    .color-swatches-right,
    .color-fan-left,
    .color-fan-right,
    .palette-strip-left,
    .palette-strip-right {
        display: none;
    }

    .color-wheel-left,
    .color-wheel-right {
        width: 100px;
        height: 100px;
        opacity: 0.2;
    }

    /* Pricing Section Responsive */
    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .service-name {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .audience-boxes {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
        margin-top: -50px;
    }

    .audience-icon {
        font-size: 3rem;
    }

    .audience-title {
        font-size: 1.8rem;
    }

    .for-whom {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hide decorative images on mobile */
    .accessories-decoration,
    .couple-decoration {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .preparation-intro p {
        font-size: 1rem;
    }

    .prep-card {
        padding: 1.5rem;
    }

    .preparation-important {
        padding: 1.5rem;
    }

    .preparation-important h3 {
        font-size: 1.5rem;
    }

    .preparation-important p {
        font-size: 1rem;
    }

    .contact-photo img {
        max-width: 100%;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    /* Pricing Section Mobile */
    .pricing-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .service-name {
        font-size: 1.5rem;
    }

    .price-badge {
        padding: 0.8rem 2rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .price-currency {
        font-size: 1.3rem;
    }

    .audience-boxes {
        gap: 3rem;
    }

    .audience-box {
        padding: 2.5rem 1.5rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        margin-top: -40px;
    }

    .audience-icon {
        font-size: 2.5rem;
    }

    .audience-title {
        font-size: 1.5rem;
    }

    .for-whom {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .pricing-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        font-size: 1.3rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .pricing-cta .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Hide all decorative elements on mobile */
    .color-wheel-left,
    .color-wheel-right {
        display: none;
    }
}
