:root {
    --primary-dark: #1a1a2e;
    --primary-gold: #d4a853;
    --primary-gold-hover: #b88f3e;
    --accent-green: #2d6a4f;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

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

.text-gold {
    color: var(--primary-gold);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-gold {
    background: var(--primary-gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--primary-gold-hover);
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

.full-width {
    width: 100%;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* NAV */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

/* NAV MENU */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-menu li a:hover {
    color: var(--primary-gold);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 60px;
    background: var(--primary-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 40px 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.9rem;
    color: var(--primary-gold);
}

/* CURTAIN REVEAL COMPONENT */
.hero-label {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 2s infinite;
}

/* Reveal Button */
.reveal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-gold), #e6bf6a);
    color: #000;
    border: none;
    padding: 20px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    margin: 25px auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
    position: relative;
    overflow: hidden;
}

.reveal-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: 0.6s;
}

.reveal-btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.reveal-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.6);
}

.reveal-btn i {
    font-size: 1.8rem;
    animation: sparkle 1.5s infinite;
}

.reveal-btn span {
    font-weight: 700;
    letter-spacing: 2px;
}

.reveal-btn small {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: none;
    opacity: 0.8;
}

.reveal-btn.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Curtain Container */
.curtain-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    margin-top: 20px;
}

/* Room Selector */
.room-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    z-index: 100;
    position: relative;
}

.room-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(212, 168, 83, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-btn:hover {
    background: rgba(212, 168, 83, 0.2);
    border-color: var(--primary-gold);
}

.room-btn.active {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.4);
}

.curtain-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Default: Salon */
.curtain-after {
    background-image: url('../images/salonpo.png');
    z-index: 1;
}

.curtain-before {
    background-image: url('../images/salonprzed.png');
    z-index: 2;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.curtain-before.revealed {
    transform: translateX(-100%);
}

/* Labels on images */
.curtain-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.curtain-label i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.curtain-label-after {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    background: rgba(45, 106, 79, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease 0.8s;
}

.curtain-label-after.visible {
    opacity: 1;
    transform: translateX(0);
}

.curtain-label-after i {
    margin-right: 8px;
    color: #90EE90;
}

/* Animations */
@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-8deg) scale(1.1);
    }

    75% {
        transform: rotate(8deg) scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* PROCESS TIMELINE */
.process {
    padding: 80px 0;
    background: #fff;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    background: var(--light-bg);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: 0.3s;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    display: none;
    font-size: 0.95rem;
    color: #666;
    animation: fadeIn 0.5s;
}

.timeline-item.active .timeline-content p {
    display: block;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.timeline-item.active {
    border-left: 5px solid var(--primary-gold);
    background: #fff;
}

/* COMPARISON TABLE */
.comparison {
    padding: 60px 0;
    background: var(--light-bg);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: var(--primary-dark);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

th.negative {
    background: #666;
}

th.positive {
    background: var(--accent-green);
}

td strong {
    color: var(--accent-green);
}

tr:hover {
    background: rgba(212, 168, 83, 0.05);
}

/* LEAD MAGNET */
.lead-magnet {
    background: var(--primary-dark);
    color: #fff;
    padding: 50px 0;
}

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

.lm-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lm-text h3 i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.lm-text p {
    color: rgba(255, 255, 255, 0.8);
}

.lm-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.lm-form input[type="email"] {
    padding: 14px 16px;
    border-radius: 4px;
    border: none;
    flex: 1;
    min-width: 200px;
    font-size: 1rem;
}

/* CONTACT FORM */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8e8e8 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.form-wrapper>p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.file-upload label {
    color: var(--primary-gold);
}

.file-upload label i {
    margin-right: 8px;
}

.file-upload input {
    border: none;
    padding: 10px 0;
}

/* FOOTER */
footer {
    background: #111;
    color: #777;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    color: #fff;
    font-family: 'Oswald';
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* MOBILE STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.sticky-bar .btn {
    padding: 14px 24px;
    font-size: 1rem;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    /* Add padding at bottom for sticky bar */
    footer {
        padding-bottom: 80px;
    }

    /* Table scroll hint */
    .table-wrapper::after {
        content: '→ Przewiń w prawo';
        display: block;
        text-align: center;
        color: #999;
        font-size: 0.8rem;
        padding-top: 10px;
    }
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        width: 40%;
        text-align: left;
        padding-left: 5%;
    }

    .curtain-container {
        width: 60%;
        height: 100%;
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    .trust-badges {
        justify-content: flex-start;
    }

    .timeline {
        flex-direction: row;
    }

    .timeline-item {
        flex: 1;
    }

    .lm-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .lm-text {
        flex: 1;
    }

    .desktop-only {
        display: inline-block;
    }

    .mobile-only {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* ========== NAVBAR BLOG LINK ========== */
/* ========== NAVBAR BLOG LINK ========== */
.nav-link-blog {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    color: var(--primary-gold) !important;
    /* Override default menu link color */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.nav-link-blog:hover {
    background: var(--primary-gold);
    color: #000 !important;
}

.nav-link-blog i {
    font-size: 0.85rem;
}

/* ========== BLOG PREVIEW SECTION ========== */
.blog-preview {
    padding: 60px 0;
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
}

.blog-preview h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.blog-preview h2 i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.blog-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    display: block;
}

.blog-preview-card:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.blog-preview-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.blog-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-gold);
}

.blog-preview-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.blog-more-btn {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.blog-more-btn:hover {
    background: var(--primary-gold);
    color: #000;
}