:root {
    /* Original Premium Palette */
    --base-beige: #F5F1ED;
    --base-beige-dark: #EBDAC1;
    --accent-wine: #7D1B44;
    --accent-chocolate: #4B2C20;
    --accent-olive: #525B15;
    
    /* Functional Colors */
    --text-main: #2C2C2C;
    --text-light: #5F5F5F;
    --white: #FFFFFF;
    
    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--base-beige);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--accent-chocolate);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
.text-accent-wine { color: var(--accent-wine); }
.text-accent-olive { color: var(--accent-olive); }
.text-center { text-align: center; }

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 241, 237, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75, 44, 32, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-wine);
    font-family: 'Outfit', sans-serif;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-wine);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--accent-chocolate);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero_new.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(245, 241, 237, 0.9), rgba(245, 241, 237, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-wine);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-chocolate);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 44, 32, 0.2);
}

/* Sections General */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-olive);
}

/* O mnie */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--base-beige-dark);
}

/* Oferta */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(75, 44, 32, 0.05);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.offer-card h3 {
    margin: 20px 0;
}

/* Analysis Sections */
.analysis-info {
    background-color: var(--base-beige-dark);
    border-radius: 40px;
    padding: 60px;
}

.prep-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.prep-item {
    display: flex;
    gap: 20px;
}

.prep-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-olive);
    opacity: 0.5;
}

/* Testimonials */
.testimonials-slider {
    overflow: hidden;
}

.testimonial-card {
    background: var(--accent-wine);
    color: var(--white);
    padding: 40px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    display: block;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(75, 44, 32, 0.2);
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
}

/* Footer */
footer {
    background-color: var(--accent-chocolate);
    color: var(--white);
    padding: 60px 5% 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Form Validation Utilities */
.hidden { display: none !important; }
.form-success-msg { color: #27ae60; background: #e8f8f0; padding: 15px; border-radius: 10px; border: 1px solid #27ae60; margin-top: 15px; text-align: center; font-weight: 600; }
.form-error-msg { color: #c0392b; background: #fadbd8; padding: 15px; border-radius: 10px; border: 1px solid #c0392b; margin-top: 15px; text-align: center; font-weight: 600; }
.input-error { border-color: #c0392b !important; background-color: #fef9f9 !important; }
.input-ok { border-color: #27ae60 !important; }
.err-msg { color: #c0392b; font-size: 0.85rem; font-weight: 500; margin-top: 5px; display: block; }
