/* Gallery Spinner Styles */
.spinner-container {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}
.spinner-brand {
  width: 54px;
  height: 54px;
  border: 5px solid #222;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  border-radius: 50%;
  animation: spin-brand 0.8s linear infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
@keyframes spin-brand {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.spinner-text {
  margin-top: 10px;
  color: #bdbdbd;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.gallery-grid {
  min-height: 220px;
}
.social-btn.tiktok {
  background: #000;
  border: 2px solid rgba(220,220,220,0.55);
}
.social-btn.tiktok:hover {
  background: #222;
  border-color: rgba(220,220,220,0.85);
  transform: translateY(-2px) scale(1.04);
}
/* Socials Section Styles */
.socials {
  margin: 48px auto 0 auto;
  padding: 32px 0 24px 0;
  text-align: center;
}
.socials h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.socials p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.socials-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 32px;
  padding: 10px 22px 10px 14px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 8px;
}
.social-btn svg {
  flex-shrink: 0;
}
.social-btn.facebook {
  background: #1877F3;
}
.social-btn.facebook:hover {
  background: #145db2;
  transform: translateY(-2px) scale(1.04);
}
.social-btn.instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.social-btn.instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.04);
}
.social-btn.tiktok {
  background: #000;
}
.social-btn.tiktok:hover {
  background: #222;
  transform: translateY(-2px) scale(1.04);
}
#instagram-popup-msg.instagram-popup-msg {
  position: fixed;
  right: 36px;
  bottom: 90px;
  z-index: 10000;
  background: #fff;
  color: #262626;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  max-width: 260px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#instagram-popup-msg.instagram-popup-msg.show {
  opacity: 1;
  pointer-events: auto;
}
/* Floating Instagram Button Styles */
#instagram-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 1.5px 6px rgba(221,42,123,0.18);
  padding: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#instagram-float-btn:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 2px 8px rgba(221,42,123,0.22);
  transform: translateY(-2px) scale(1.05);
}
#instagram-float-btn img {
  display: block;
}
/* General styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 700;
  color: #ffffff;
}

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

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.logo img {
  max-width: 100px;
  max-height: 100px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #f5f5f5;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffffff;
}

/* Burger menu styles */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger .line {
  width: 25px;
  height: 3px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 64px; /* offset for fixed nav */
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
}

.btn:hover {
  background-color: #ffffff;
}

/* Experiences Section */
.experiences {
  padding: 4rem 2rem;
  background-color: #0f0f0f;
}

.experiences h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: #1b1b1b;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.card ul {
  list-style-type: disc;
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  gap: 2rem;
}

.about-content {
  flex: 1 1 400px;
}

.about-image {
  flex: 1 1 300px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Gallery Section */
.gallery {
  padding: 4rem 2rem;
  background-color: #0f0f0f;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 200px));
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  text-align: center;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background-color: #1b1b1b;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 300px;
  flex: 1 1 260px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.testimonial .quote {
  font-style: italic;
  margin-bottom: 0.8rem;
}

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

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: #0f0f0f;
  text-align: center;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info li {
  margin: 0.5rem 0;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border-radius: 4px;
  border: none;
  background-color: #1b1b1b;
  color: #ffffff;
  font-size: 0.95rem;
}

.contact-form button {
  align-self: center;
}

/* Footer */
footer {
  background-color: #000000;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #777777;
}

/* Responsive */
@media (max-width: 768px) {
  /* Adjust hero text sizing */
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  /* Stack about section items */
  .about {
    flex-direction: column;
  }
  /* Mobile navigation: convert horizontal list to full‑width dropdown */
  .nav-links {
    position: absolute;
    top: 60px; /* roughly the height of the navbar */
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }
  .nav-links li {
    text-align: center;
  }
  /* Show burger icon on small screens */
  .burger {
    display: flex;
  }
  /* When active, display nav links */
  .nav-links.active {
    display: flex;
  }
  /* Transform burger icon into a cross when toggled */
  .burger.toggle .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.toggle .line:nth-child(2) {
    opacity: 0;
  }
  .burger.toggle .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
