:root {
    --primary: #3d3028; /* Ciemny brąz drewna */
    --accent: #d7b594;  /* Ciepły dąb */
    --bg: #fcfaf8;      /* Złamana biel */
    --white: #ffffff;
    --dark: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; scroll-behavior: smooth; }

h1, h2, h3 { font-family: 'Libre Baskerville', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* NAVIGATION */
#navbar { position: fixed; width: 100%; z-index: 1000; padding: 30px 0; transition: 0.5s; }
#navbar.scrolled { background: var(--primary); padding: 15px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--white); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; }
.logo span { font-weight: 300; display: block; font-size: 0.8rem; letter-spacing: 5px; color: var(--accent); }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; margin-left: 35px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.cta-nav { background: var(--accent); color: var(--primary) !important; padding: 10px 20px; border-radius: 2px; font-weight: 600; }

/* HERO */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; color: var(--white); text-align: center; overflow: hidden; }
.parallax-bg {
    position: absolute;
    top: -10%; /* Przesuwamy w górę, żeby mieć zapas na ruch przy skrolowaniu */
    left: 0;
    width: 100%;
    height: 180%; /* Zwiększamy tylko wysokość, nie szerokość */
    background-size: cover; /* KLUCZ: Zachowuje proporcje obrazu, przycinając go do ramki */
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform; /* Optymalizacja wydajności dla animacji */
}
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); z-index: 0; }
.hero-text { position: relative; z-index: 1; max-width: 850px; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 25px; line-height: 1.2; }
.hero p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; letter-spacing: 1px; }

.btn { padding: 18px 40px; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; transition: 0.4s; display: inline-block; margin: 10px; }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-secondary { border: 1px solid var(--white); color: var(--white); }
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* ABOUT */
section { padding: 120px 0; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tag { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; display: block; }
h2 { font-size: 2.8rem; margin-bottom: 30px; line-height: 1.3; }
.check-list { list-style: none; margin-top: 30px; }
.check-list li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; }
.check-list i { color: var(--accent); margin-right: 15px; }
.about-img img { width: 100%; border-radius: 4px; box-shadow: 40px 40px 0 #eee; }

/* AMENITIES */
.amenities { background: var(--primary); color: var(--white); }
.amenities .section-title h2 { color: var(--white); text-align: center; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.amenity-card { text-align: center; padding: 40px; background: rgba(255,255,255,0.03); transition: 0.4s; }
.amenity-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-10px); }
.amenity-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; }

/* GALLERY */
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { height: 350px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.gallery-item:hover img { transform: scale(1.1); filter: sepia(30%); }

/* BOOKING */
.booking-card { background: var(--white); padding: 80px 40px; text-align: center; border-radius: 5px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.call-link { font-size: 2rem; display: block; margin: 30px 0; color: var(--primary); text-decoration: none; font-weight: 700; }
.social-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-fb { background: #1877F2; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; font-weight: 600; }
.btn-ig { background: #E4405F; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; font-weight: 600; }

footer { padding: 50px; text-align: center; font-size: 0.8rem; letter-spacing: 2px; color: #999; }

/* MOBILE */
@media (max-width: 992px) {
    .about-wrapper, .amenities-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}