/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fafafa;
    scroll-behavior: smooth;
}

/* NAVBAR */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero h1 {
    position: relative;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-family: 'Playfair Display', serif;
    max-width: 900px;
}

/* SECTIONS */
section {
    padding: clamp(60px, 10vw, 120px) 12%;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* CENNIK */
.price-box {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

/* KONTAKT */
.contact-box {
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* FOOTER */
footer {
    background: #222;
    color: #ccc;
    padding: 50px 10%;
    text-align: center;
}

.social a {
    margin: 0 12px;
    color: #ccc;
    text-decoration: none;
}

/* DARK MODE */
body.dark {
    background: #1a1a1a;
    color: #eee;
}

body.dark header {
    background: rgba(30,30,30,0.9);
}

body.dark .card,
body.dark .price-box {
    background: #2a2a2a;
    color: #eee;
}

body.dark footer {
    background: #000;
}

.dark-toggle {
    position: fixed;
    top: 90px;
    right: 25px;
    background: white;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2000;
}

body.dark .dark-toggle {
    background: #333;
    color: #fff;
}

/* STICKY BOOK BUTTON */
.book-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #4a7c59;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1500;
}

/* MOBILE CALL BUTTON */
.call-mobile {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #0077cc;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1500;
}

@media (max-width: 768px) {
    .call-mobile {
        display: block;
    }
}
