* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 50%, #f5ebe0 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #3a3a3a;
}

.container {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(153, 123, 94, 0.2);
}

.logo-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #997b5e;
  position: relative;
}

.content {
  padding: 20px;
}

.tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.6;
}

.description {
  font-size: 1.1rem;
  font-weight: 300;
  color: #6a6a6a;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #997b5e 0%, #c4a77d 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(153, 123, 94, 0.3);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(153, 123, 94, 0.4);
  background: linear-gradient(135deg, #c4a77d 0%, #997b5e 100%);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Brand-specific social button colors */
.social-link.facebook {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.22);
}
.social-link.facebook:hover {
  background: #165ecf;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(22, 94, 207, 0.28);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(221, 42, 123, 0.18);
}
.social-link.instagram:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 30px rgba(131, 52, 175, 0.28);
}

.social-link span {
  letter-spacing: 0.5px;
}
/* Contact Section */
.contact-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #997b5e;
}

.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #997b5e;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #997b5e;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-item a {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #997b5e;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  display: block;
}
/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 30px;
  }

  .logo {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .logo-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-item {
    margin-bottom: 25px;
  }

  .map-container {
    width: 100%;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
  }

  .logo {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
  }
}

/* Gallery Section */
/* .gallery-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #997b5e;
}

.gallery-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #997b5e;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  justify-items: center;
  align-items: center;
  margin-bottom: 30px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    max-width: 420px;
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(153, 123, 94, 0.12);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.gallery-img:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(153, 123, 94, 0.22);
} */

/* Modelka (hero) image styles */
.modelka {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 32px auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 6px solid rgba(255, 255, 255, 0.6);
}

.modelka:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
  .modelka {
    margin: 20px auto;
    border-radius: 12px;
    border-width: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  }
}

/* Lightbox styles */
/* .lightbox {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(153, 123, 94, 0.25);
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
  text-shadow: 0 2px 8px #000;
}

@media (max-width: 600px) {
  .gallery-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .lightbox-content {
    max-width: 98vw;
    max-height: 70vh;
  }
  .close {
    top: 10px;
    right: 20px;
    font-size: 2.2rem;
  }
} */
