* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: #2c3e50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-direction: row;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3498db;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About Section */
.about {
  background-color: white;
  padding: 4rem 0;
  margin: 2rem 0;
  border-radius: 8px;
}

.about .container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
}

.gallery .container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item-info {
  padding: 1rem;
  background-color: #f8f9fa;
}

.gallery-item-info h3 {
  font-size: 0.9rem;
  color: #2c3e50;
  word-break: break-word;
}

.loading {
  text-align: center;
  color: #999;
  font-style: italic;
}

/* Contact Section */
.contact {
  background-color: #2c3e50;
  color: white;
  padding: 4rem 0;
  margin-top: 2rem;
}

.contact .container {
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact > .container > p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
}

.social-btn .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-btn i {
  display: block;
}

.social-icon {
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  display: block;
}

.bluesky-fallback {
  display: none;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: #1185fe;
}

.bluesky .social-icon {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-basis: 24px;
}

.facebook {
  background-color: #1877f2;
}

.facebook:hover {
  background-color: #166fe5;
  transform: scale(1.1);
}


.bluesky {
  background-color: #ffffff;
  border: 2px solid #1185fe;
  color: #1185fe;
}

.bluesky:hover {
  background-color: #e8f3ff;
  transform: scale(1.1);
}

.bluesky.broken .social-icon {
  display: none;
}

.bluesky.broken .bluesky-fallback {
  display: block;
}

.linkedin {
  background-color: #0a66c2;
}

.linkedin:hover {
  background-color: #084a9a;
  transform: scale(1.1);
}

.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.email {
  background-color: #ea4335;
}

.email:hover {
  background-color: #d33424;
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #1a252f;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

/* Modal for full image view */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .social-links {
    gap: 1rem;
  }
}

