@font-face {
    font-family: 'Gingerbread';
    src: url('./fonts/GingerBiscuit.ttf');
}

body {
    font-family: "Poppins", system-ui;
    background-color: #4b2d0d;
    color: #fefefe;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: #f3904a;
    text-decoration: none;
    transition: .2s color ease-in-out;
}

a:hover {
    color: #c77134;
}

/* footer a {
    color: #ffe0c4;
    text-decoration: none;
    transition: .2s color ease-in-out;
}

footer a:hover {
    color: #c9af99;
} */

.navbar {
    background-color: #8B4513;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;

    font-weight: bold;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-left .navbar-icon {
    width: 30px;
    height: auto;
    color: #fff;
}


.navbar-left h1 {
    margin: 0 0 0 10px;
    font-size: 24px;
    color: white;
    font-family: 'Gingerbread', sans-serif; /* cursive */
}

h1{
    font-family: 'Gingerbread', sans-serif; /* cursive */
}

h2 {
    font-size: 2em;
    margin-bottom: 0;
    font-family: cursive, sans-serif;
}

.navbar-left i {
    font-size: 24px;
    color: white;
}

.navbar-right {
    margin-right: 3em;
}

.navbar-right a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    display: inline-block;
}
.navbar-right a:hover {
    color: rgba(253, 179, 126, 0.95);
}


.burger-menu {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.burger-dropdown {
    display: none;
    flex-direction: column;
    background-color: rgba(139, 69, 19, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
}

.burger-dropdown a {
    color: white;
    text-decoration: none;
    margin: 15px 0;
    font-size: 24px;
}

.burger-dropdown.open {
    display: flex;
}

.burger-dropdown .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.banner {
    /* background-image: url('https://via.placeholder.com/1920x400'); */
    background-image: url('../assets/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    margin: 0;
    border-bottom: 5px solid #fff;
}

.text-block {
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

.section-heading {
    text-align: center;
    font-size: 24px;
    font-family: 'Gingerbread', cursive;
    margin-top: 40px;
}

.section-heading hr {
    width: 6em;
    margin: 10px auto 1px auto;
    border: 1px solid #fefefe;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.gallery img {
    /* width: 300px; */
    width: auto;
    height: 300px;
    margin: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    border: .3em solid rgb(255, 255, 255);
}

.link-btn {
    text-align: center;
    margin-top: 20px;
}

.link-btn a {
    text-decoration: none;
    color: #8B4513;
    background-color: #fefefe;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    transition: .2s ease-in-out;
}

.link-btn a:hover {
    color: #ffffff;
    background-color: #8B4513;
}

.contact {
    padding: 20px;
    text-align: center;
}

.contact p {
    font-size: 18px;
    margin: 5px 0;
}

footer {
    background-color: #8B4513;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

footer p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .navbar-right {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .gallery img {
        width: 90%;
        height: auto;
    }

    .link-btn a {
        width: 90%;
    }
}
/* loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8B4513;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-icon {
    width: 100px;
    height: auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#cenik-text {
    margin-bottom: 35px;
}

/* INFO BOX */
.info-box {
  background: #8e5921;
  color: #fffbe7;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(44, 21, 6, 0.17);
  max-width: 420px;
  margin: 50px auto 0 auto;
  padding: 28px 24px 24px 24px;
  text-align: center;
  border: 2px solid #fffbe7;
  position: relative;
}

.info-icon {
  width: 88px;
  height: 88px;
  /* background: #fffbe7; */
  background: #8e5921;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(44, 21, 6, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  z-index: 2;
  font-size: 40px;
}

.info-title {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 18px;
  font-weight: 700;
}

.info-text {
  font-family: 'Segoe UI', 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
