 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            background-color: #F5F5F0;
            font-family: "Noto Sans", sans-serif !important;
            color: #4A3B2A;
            line-height: 1.6;
        }

        .main-section {
            position: relative;
            z-index: 10;
            padding: 5rem 0;
            width: 100%;
            overflow: hidden;
        }

        #witaj {
            background: linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)), 
                        center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
			
        }

        #o_nas {
            background-color: #E8E0D5;
        }

        #produkty {
            background-color: #FFFFFF;
            color: #4A3B2A;
        }

        #gallery {
            background: linear-gradient(rgba(232, 224, 213, 0.92), rgba(232, 224, 213, 0.92)), 
                        url('files/workshop_background.webp') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        #kontakt {
            background-color: #FFFFFF;
        }

        .section-header {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-header:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #8B6B46;
        }

      .btn-custom {
    background-color: #6B4F32; /* ciemniejszy brąz */
    color: #FFFFFF;            /* biały tekst */
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

        .btn-custom:hover {
            background-color: #6B4F32;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(107, 79, 50, 0.2);
            color: white;
        }

.btn-custom:focus {
    outline: 2px solid #D25B7A;
    outline-offset: 3px;
}


        .carousel {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        #contact-form {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            color: #4A3B2A;
        }

        footer {
            background-color: #8B6B46;
            padding: 2rem 0;
            color: white;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
		
		footer a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}
footer a:hover,
footer a:focus {
    color: #FFFFFF;
    text-decoration: underline;
}




        .wood-decoration {
            position: absolute;
            background: rgba(139, 107, 70, 0.1);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            .main-section {
                padding: 3rem 0;
            }
            h1.display-4 {
                font-size: 2.2rem;
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .highlight-text {
            color: #6B4F32;
            font-weight: 600;
        }

        .wood-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 15px 15px 0 rgba(107, 79, 50, 0.1);
        }

    

      a {
    text-decoration: none;
    font-weight: 600;       /* pogrubienie zamiast podkreślenia */
    color: #6B4F32;         /* kontrastowy brąz */
}
a:hover,
a:focus {
    text-decoration: underline; /* podkreślenie tylko na hover/focus */
    text-decoration-thickness: 2px;
}



        #cookies a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233,170,183,0.3);
        }

        #cookies a:hover span:last-child {
            opacity: 1;
        }

        #cookies .position-absolute:first-child {
            animation: float 6s ease-in-out infinite;
        }

        #cookies .position-absolute:nth-child(2) {
            animation: float 7s ease-in-out infinite 1s;
        }

        @media (max-width: 768px) {
            #cookies .position-absolute:first-child {
                top: 10%;
                left: 5%;
            }
            #cookies .position-absolute:nth-child(2) {
                bottom: 5%;
                right: 5%;
            }
            #cookies .position-absolute:last-child {
                bottom: -50px !important;
                right: -50px !important;
            }
            #cookies .col-lg-6.order-lg-1 {
                margin-bottom: 30px;
            }
        }

        #cookies .cookie-image {
            max-width: 100%;
			height: auto;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Nowe style dla galerii */
        #gallery .workshop-bg {
           
            background-repeat: repeat;
            background-size: 300px;
            opacity: 0.12;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        
		a:focus {
    outline: 2px solid #6B4F32;
    outline-offset: 2px;
    box-shadow: 0 0 5px rgba(139, 107, 70, 0.5);
}

.product-grid img {
  width: 100%;
  height: 220px;       /* wszystkie zdjęcia równej wysokości */
  object-fit: cover;   /* przycięcie zamiast rozciągania */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-grid img:hover {
  transform: scale(1.05); /* efekt powiększenia na hover */
}

.hamburger {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #6B4F32; /* ciemny brąz */
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(200,169,126,0.6); /* subtelny złoty glow */
  transition: all 0.5s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* laser beam */
.beam {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,#8B5A2B,#C8A97E,transparent);
  box-shadow: 0 0 8px rgba(200,169,126,0.8);
  opacity: 0;
}


/* iskry */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle,#ffd000,#ff3c00);
  pointer-events: none;
}

/* Domyślnie ukryj hamburgera */
.hamburger {
  display: none;
}

/* Pokaż tylko na urządzeniach mobilnych (np. < 992px szerokości) */
@media (max-width: 991.98px) {
  .hamburger {
    display: flex; /* albo block, jeśli wolisz */
  }
}

/* Nadpisanie dla Bootstrap Icons */
@font-face {
  font-family: "bootstrap-icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2");
  font-display: swap;
}

.form-label {
  color: #4A3B2A; /* ciemniejszy brąz dla lepszego kontrastu */
  font-weight: 600; /* pogrubienie dla czytelności */
}

.text-muted {
    color: #5A4A3A !important; /* ciemniejszy, czytelny */
}

.social-icons a {
    text-decoration: none !important;
    border-bottom: none !important;
}
.social-icons a:hover,
.social-icons a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}
.hero-wrapper {
  aspect-ratio: 1 / 1;  /* kwadrat */
  width: 100%;
  position: relative;
}
.hero-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

