/* Załadowanie czcionki Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');


body {
    font-family: 'Poppins', Arial, sans-serif;
   
    padding: 0;
    line-height: 1.6;
    background-color: #fff;
   
    color: #7e7e7e;
   
    margin-top: 80px 0 0 0;
   
}

.container {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

header {
    font-family: 'Roboto', Arial, sans-serif;
   
    position: fixed;
   
    top: 0;
   
    left: 0;
   
    width: 100%;
   
    z-index: 1000;
   
    background-color: #47141e;
   
    color: #fff;
   
    padding: 0px 0px;
   
    white-space: nowrap;
   
    overflow: hidden;
   
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   
}

a {
    color: #fff;
   
    text-decoration: underline;
   
    text-decoration-thickness: 1px;
   
}


.logo {
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100%;
   
    max-height: 120px;
   
    width: auto;
}


/* Ogólne ustawienia nagłówka */
.header-content {
    display: flex;
    justify-content: space-between;
   
    align-items: center;
   
}

.quick-reservation {
    display: flex;
    flex-direction: column;
   
    align-items: flex-end;
   
    line-height: 1;
   
}

.quick-reservation .reservation-title {
    font-weight: bold;
    font-size: 0.9rem;
   
    text-transform: uppercase;
    color: #898989;
   
    margin: 0 0 2px 0;
   
}

.quick-reservation .reservation-phone {
    display: flex;
    align-items: center;
   
    gap: 5px;
   
    font-size: 1rem;
   
    margin: 0;
   
}

.quick-reservation .reservation-phone i {
    color: #fff;
   
    font-size: 1.2rem;
   
}

.quick-reservation .reservation-phone a {
    color: #fff;
   
    text-decoration: none;
   
    font-weight: bold;
   
    transition: color 0.3s ease;
}

.quick-reservation .reservation-phone a:hover {
    color: #898989;
   
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-reservation {
        text-align: left;
        margin-top: 10px;
    }
}

/* start  dla tel */

@media (max-width: 768px) {

   
    .logo {
        display: none;
    }

    .hide-on-mobile {
        display: none;
    }

    .logo-image {
        width: 240px !important;
       
        height: auto !important;
    }

    .quick-reservation {
        display: none;
       
    }

    section#banner {
        display: none !important;
    }

    .menu {
        display: none !important;
    }


}



/* koniec  dla tel */


@media (min-width: 769px) {
    .only-mobile {
        display: none;
    }
}


nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 1px;
}

nav ul li a {
    color: #fff;
   
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
   
    padding: 3px 4px;
   
    border-radius: 3px;
   
}

nav ul li a:hover {
    background-color: #fff;
   
    color: #47141e;
   
}

.section {
    padding: 2rem 0;
    text-align: justify;
}

h1 {
    font-family: 'Poppins', Arial, sans-serif;
   
    text-decoration: none;
}

h2,
h3,
h4 {
    font-family: 'Poppins', Arial, sans-serif;
   
    color: #47141e;
   
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 200px;
    height: auto;
    cursor: pointer;
    border: 2px solid #ddd;
}


/* Styl dla tabelki */

table tbody tr {
    background-color: #ffffff !important;
   
}

table th {
    background-color: #FFCDD2;
   
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1.2rem;
}

table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table td {
    border: 1px solid #ddd;
    padding: 8px;
    color: #7e7e7e;
   
}

@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
}


/* Styl dla kalendarza */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.calendar div {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Nagłówki dni tygodnia */
.calendar .header {
    font-weight: bold;
    background: #FFCDD2;
   
}

/* Zajęte dni */
.calendar .occupied {
    background: #ffcccc;
   
}

/* Wolne dni */
.calendar .available {
    background: #ccffcc;
   
}

/* Responsywność - na małych ekranach */
@media (max-width: 768px) {
    .calendar {
        grid-template-columns: repeat(3, 1fr);
       
    }

    .calendar .header {
        font-size: 12px;
       
    }

    .calendar div {
        font-size: 14px;
       
        padding: 8px;
       
    }

    .calendar .occupied,
    .calendar .available {
        font-size: 12px;
       
    }
}

/* Responsywność - na bardzo małych ekranach (np. telefony) */
@media (max-width: 480px) {
    .calendar {
        grid-template-columns: repeat(2, 1fr);
       
    }

    .calendar div {
        font-size: 12px;
       
        padding: 6px;
       
    }

    #banner {
        background: linear-gradient(to bottom, rgba(128, 128, 128, 0.8), rgba(128, 128, 128, 0)), url('gfx/your-image.jpeg') no-repeat center center;
        background-size: cover;
        color: #fff;
        padding: 200px 0 60px 0;
        text-align: center;
    }
}


/* banner */
#banner {
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Biała nakładka */
#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.25);
   
    z-index: 1;
    pointer-events: none;
   
}

/* Kontener na teksty */
#banner .container {
    z-index: 2;
    position: relative;
    animation: slideIn 1s ease-in-out;
    margin-top: 100px;
}

/* Stylizacja nagłówka i tekstu */
#banner h2 {
    margin: 0;
    padding: 15px 15px;
    white-space: nowrap;
    font-size: 3.5rem;
    color: #47141e;
}

#banner p {
    margin: 0;
    padding: 15px 15px;
    white-space: nowrap;
    font-size: 2rem;
    color: #292929;
}

/* Animacja przesuwania */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* banner - koniec*/


.white-background {
    background-color: #47141e;
}

.light-gray-background {
    background-color: #f2f2f2;
}

/* Sekcja z licznikami */
#stats {
    background-color: #47141e;
   
    padding: 40px 0;
    color: #fff;
   
    text-align: center;
}

/* Kontener dla bloków z licznikami (kolumny) */
.row {
    display: flex;
    justify-content: space-between;
   
    gap: 20px;
}

/* Styl pojedynczego bloku z licznikiem */
.stat-block {
    background-color: #FFCDD2;
   
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    flex: 1;
   
}

.stat-block:hover {
    transform: translateY(-10px);
}

/* Styl licznika */
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
   
    margin-bottom: 10px;
}

/* Tekst poniżej licznika */
.stat-text {
    font-size: 16px;
    color: #fff;
   
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsywność */
@media (max-width: 1024px) {
    .col-md-4 {
        flex: 0 0 48%;
       
    }
}

@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
       
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 14px;
    }

    #banner {
        background: linear-gradient(to bottom, rgba(128, 128, 128, 0.8), rgba(128, 128, 128, 0)), url('gfx/overlay.jpeg') no-repeat center center;
        background-size: cover;
        color: #fff;
        padding: 240px 0 60px 0;
        text-align: center;
    }

    #stats {
        display: none;
       
    }
}


/* sekcja ze zdjeciami */
.row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.col-50 {
    width: 50%;
    padding: 10px;
}

.col-50.text {
    text-align: justify;
}

.col-50.image img {
    width: 320px;
   
    height: auto;
   
    border-radius: 8px;
    margin: 0 auto;
   
    display: block;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-50 {
        width: 100%;
    }

    .col-50.image img {
        width: 100%;
       
        max-width: 320px;
       
    }
}


/* paralax */

.parallax-background {
    background-image: url('gfx/your-image3.jpeg');
   
    background-attachment: fixed;
   
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
   
    padding: 80px 0;
   
}

.parallax-background .container {
    background: rgba(0, 0, 0, 0.5);
   
    padding: 20px;
    border-radius: 8px;
}


/* paralax */

.parallax2-background {
    background-image: url('gfx/your-image2.jpeg');
   
    background-attachment: fixed;
   
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
   
    padding: 80px 0;
   
}

.parallax2-background .container {
    background: rgba(0, 0, 0, 0.5);
   
    padding: 20px;
    border-radius: 8px;
}

/* paralax - koniec*/


/* zdjęcie na prawo od wypunktowania */

.flex-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
   
    margin-top: 20px;
}

.details {
    flex: 1;
   
    list-style-position: outside;
    padding-left: 20px;
    text-align: left;
}

.image-container {
    flex: 2;
   
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
   
    border-radius: 8px;
   
}

/* zdjęcie na prawo od wypunktowania - koniec*/

.munu-mobile {
    text-align: right;
    line-height: 5px;
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #47141e;
  position: relative;
    margin: 5px 0; /* Zmniejsza odstępy góra-dół */
  padding: 110px 0 3px 0; /* Opcjonalnie: dodaje trochę przestrzeni wewnętrznej */
  line-height: 1.2; /* Zmniejsza interlinię */
  display: none;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #47141e;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #47141e;
  color: white;
}