/* Kolory */
:root {
    --bs-primary: #212529;
    --bs-secondary: #343a40;
    --bs-warning: #ffc107;
    --bs-danger: #0ca3ae;
}

/* Grecka czcionka */
.greek-font {
    font-family: 'GFS Didot', serif;
    letter-spacing: 1px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-bg.jpg') center/cover no-repeat;
    margin-top: 0x; /* Kompensacja dla fixed navbar */
}

/* Nawigacja */
.navbar {
    transition: all 0.3s;
}
.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* UsBugi */
.card {
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

/* Galeria */
.gallery img {
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.03);
}

/* Formularz */
.form-control:focus {
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Responsywno[ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .team-member img {
        max-height: 200px;
    }
}

.btn-booksy:hover {
    background-color: #0d8b94;
    border-color: #0d8b94;
    box-shadow: 0 4px 8px rgba(12, 163, 174, 0.3);
}