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

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden; 
}

body.menu-active {
  overflow: hidden; /* Prevent scrolling when menu is open */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-container, .contact-container {
  text-align: center;
}
header {
  padding: 2rem;
  background-color: #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo {
  height: 120px;
}

/* Hamburger Menu */
.hamburger-menu {
  position: absolute;
  right: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 200; 
}

.menu-icon {
  width: 30px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 9px;
}

.menu-icon span:nth-child(3) {
  top: 18px;
}

/* X transformation when active */
.hamburger-menu.active .menu-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger-menu.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .menu-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* Start off-screen */
  width: 300px;
  height: 100vh;
  background-color: #000;
  padding: 4rem 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 100;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.side-menu.active {
  right: 0; 
}

.side-menu nav {
  margin-top: 2rem;
}

.side-menu nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.side-menu nav li {
  margin: 1.5rem 0;
}

.side-menu nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
  display: block;
}

.side-menu nav a:hover {
  color: #ccc;
}



/* Hero Section */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Gallery Grid */
.gallery {
  padding: 2rem 0 5rem;
}


.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-bottom: 1.5rem;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: fit-content;
  background: #2a2a2a;
  transition: transform 0.3s ease;
  margin: 0 0 1.5rem 0; 
  padding: 0;
  break-inside: avoid; 
  page-break-inside: avoid; 
  display: block; 
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.3); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-item .overlay h3 {
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .overlay h3 {
  transform: translateY(0);
}

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

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: #000000;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.back-link {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: #fff;
}

/* Content Section */
.content {
  padding: 3rem 0;
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Google Map */
.google-map {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  padding: 2rem 0;
  background: #000;
  text-align: center;
}

footer p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Social Media Banner */
.social-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  text-align: center;
}

.social-banner h2 {
  display: none;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.facebook:hover {
  color: #1877F2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram:hover {
  color: #E4405F;
  box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.social-icon.tiktok:hover {
  color: #00F2EA;
  box-shadow: 0 5px 15px rgba(0, 242, 234, 0.4);
}

.social-icon.whatsapp:hover {
  color: #25D366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  header {
    padding: 1.5rem;
  }
  
  .logo {
    height: 80px;
  }
  
  .social-icons {
    gap: 0.8rem;
  }
  
  .social-icon {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
  }
  
  .social-banner {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    column-count: 2;
  }
  
  header {
    padding: 1rem;
  }
  
  .social-icons {
    gap: 0.6rem;
  }
  
  .social-icon {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
  }
  
  .social-banner {
    bottom: 10px;
    right: 10px;
  }
}
