body {
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover {
  color: inherit;
}

a:active {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
}

.header-image {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.header-image img {
  max-height: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #d4af37;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f8f8f8;
  color: #d4af37;
}

.appointment-btn {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.hero {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.9)), 
              url('img/naglowek_bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  padding: 100px 20px 50px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 300px !important;
  height: 300px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  margin-bottom: 20px !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background-color: transparent;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.hero .appointment-btn {
  font-size: 16px;
  padding: 15px 30px;
}

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

section:not(.hero) {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  background-color: #f8f8f8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team {
  background-color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #d4af37;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.team-member .title {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p {
  color: #666;
  line-height: 1.6;
}

.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.brands {
  background-color: #f8f8f8;
  padding: 80px 20px;
  overflow: hidden;
}

.brands-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.brands-track {
  display: flex;
  animation: scroll 40s linear infinite;
  gap: 30px;
  align-items: center;
  width: fit-content;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.brand-item:hover {
  transform: scale(1.1);
}

.brand-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brands-track {
    gap: 20px;
  }
  
  .brand-item {
    padding: 8px 15px;
  }
  
  .brand-item img {
    max-height: 50px;
  }
}

.first-visit {
  background-color: #fff;
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visit-steps li {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 40px;
}

.visit-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 20px;
  background-color: #d4af37;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.visit-steps {
  counter-reset: step-counter;
}

.visit-steps h4 {
  margin-bottom: 10px;
  color: #2c2c2c;
}

.visit-steps p {
  color: #666;
  line-height: 1.6;
}

.visit-preparation {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
}

.visit-preparation h3 {
  margin-bottom: 20px;
  color: #2c2c2c;
}

.visit-preparation ul {
  list-style: none;
}

.visit-preparation li {
  padding: 10px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.visit-preparation li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.pricing {
  background-color: #f8f8f8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 3px solid #d4af37;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 8px 0;
  color: #555;
}

.contact {
  background-color: #fff;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 15px;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: #2c2c2c;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.contact-item i {
  width: 20px;
  margin-right: 15px;
  color: #d4af37;
}

.contact-map {
  margin-top: 30px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

.effects {
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: auto;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
  animation: zoomIn 0.3s;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #d4af37;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #d4af37;
  background-color: rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 24px;
    padding: 12px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

.testimonials {
  background-color: #f8f8f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #d4af37;
  font-family: 'Barlow Condensed', sans-serif;
}

.testimonial p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #2c2c2c;
}

footer {
  background-color: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 10px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #d4af37;
}

@media (max-width: 768px) {
  .header-image {
    margin-right: 15px;
  }
  
  .header-image img {
    width: 50px;
    height: 50px;
    max-height: 50px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    display: flex;
  }
  
  .hero-logo {
    max-width: 250px;
    width: 250px !important;
    height: 250px !important;
    object-fit: contain !important;
  }

  .hero p {
    font-size: 1.1rem;
  }
  
  .about-content,
  .visit-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-image img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .header-container {
    height: 70px;
  }
  
  .hero {
    padding: 80px 20px 50px;
    background-attachment: scroll !important;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

html {
  scroll-behavior: smooth;
}