/* ================= ZMIENNE (PRZYWRÓCONA ORYGINALNA PALETA) ================= */
:root {
    --bg-main: #161a18;         /* Głęboki ciemny grafit z nutą zieleni */
    --bg-surface: #121513;      /* Nieco ciemniejszy do odcięcia sekcji */
    --primary-green: #4f6f52;   /* Zgaszona zieleń (jako subtelny akcent) */
    
    --color-text: #f4f1eb;      /* Bardzo jasny, ciepły, beżowy biały */
    --color-muted: #a3a7a4;     /* Szary wpadający w zieleń do tekstów pobocznych */
    --color-accent: #d7c4a5;    /* Piaskowy / Złoty beż */
    --color-accent-hover: #e8d7bb; 
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ================= RESET & BAZA ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; 
}

/* Klasa pomocnicza dla ciemniejszego tła */
.bg-surface {
    background-color: var(--bg-surface);
}

/* EFEKT ZIARNA FILMOWEGO */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* KLASY WSPÓLNE */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 160px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--color-text);
}

.section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.body-text {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin-bottom: 20px;
    max-width: 500px;
}

/* PRZYCISK LUKSUSOWY (Piaskowy beż z hoverem) */
.btn-outline {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid rgba(215, 196, 165, 0.4); /* Półprzezroczysty beż */
    transition: all 0.5s ease;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--bg-main);
    border-color: var(--color-accent);
}

/* ================= PRELOADER ================= */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--bg-main);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.preloader-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

.progress-line {
    width: 150px;
    height: 1px;
    background-color: rgba(215, 196, 165, 0.15);
    position: relative;
    overflow: hidden;
}

.progress-line-inner {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 0%;
    background-color: var(--color-accent);
}

/* ================= NAWIGACJA ================= */
.navbar {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.nav-btn {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, color 0.4s;
}

.nav-btn:hover { 
    border-bottom-color: var(--color-accent); 
    color: var(--color-accent);
}

/* ================= HERO SEKCJA ================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%; 
    z-index: 0;
}

.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7; 
}

/* Płynny gradient - wtapia zdjęcie w nasz grafitowo-zielony kolor tła (RGB 22, 26, 24) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(22, 26, 24, 0.3) 0%, rgba(22, 26, 24, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 40px;
    color: var(--color-text);
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-muted);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: rgba(215, 196, 165, 0.2); /* Przezroczysty beż */
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; width: 100%; height: 100%;
    background-color: var(--color-accent);
    animation: dropLine 2s infinite ease-in-out;
}

@keyframes dropLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ================= O PRACOWNI ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid rgba(215, 196, 165, 0.1); /* Bardzo subtelna ramka */
}

.about-image {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ================= USŁUGI (KARTA MENU) ================= */
.services-container {
    max-width: 900px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .body-text {
    margin: 0 auto;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.menu-info {
    flex-shrink: 0;
    max-width: 60%;
}

.menu-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 5px;
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.menu-line {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(215, 196, 165, 0.2); /* Beżowa linia */
    margin: 0 10px;
}

.menu-price {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-accent);
}

.services-footer {
    margin-top: 80px;
    text-align: center;
}

/* ================= KONTAKT ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-top: 1px solid rgba(215, 196, 165, 0.1);
    padding-top: 120px;
}

.contact-address {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row .day {
    color: var(--color-text);
}

.hours-row .time {
    color: var(--color-muted);
}

/* ================= STOPKA ================= */
.footer {
    padding: 40px 0;
    background-color: #0d100e; /* Najgłębszy odcień zielonego grafitu */
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

.socials a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s;
}

.socials a:hover { color: var(--color-accent); }

/* ================= RWD ================= */
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image-wrapper { aspect-ratio: 16/10; }
    .menu-item { flex-direction: column; gap: 10px; }
    .menu-info { max-width: 100%; }
    .menu-line { display: none; }
}

@media (max-width: 768px) {
    .section-padding { padding: 100px 0; }
    .hero-title { font-size: 3rem; }
    .footer-inner { flex-direction: column; gap: 20px; }
    .socials a { margin: 0 15px; }
}
