/* public/style.css */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #222;
    --font-family: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    line-height: 1.6;
    background-color: var(--light-color);
    color: var(--primary-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/1.jpg') no-repeat center center/cover;
    height: 70vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
    text-decoration: none;
}

/* Sections */
main section {
    padding: 60px 0;
}

#o-nas {
    text-align: center;
    font-size: 1.1rem;
}

/* Gallery */
#galeria {
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Calendar Section */
#kalendarz {
    text-align: center;
}

#booking-widget-container {
    margin-top: 30px;
    min-height: 400px;
}

.placeholder {
    border: 2px dashed var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    background-color: #fdfdfd;
}

.rezerwacja-linki {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: #fff;
    font-weight: bold;
}

footer .copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}