/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Body */
body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  padding: 20px 0;
}

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

.header .logo {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #fff;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.nav-list a:hover {
  color: #ff6b6b;
}

/* About Section */
.about {
  padding: 60px 20px;
}

.about .container {
    display: flex;
    flex-direction: column;

}

.section-title {
  width: fit-content;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.section-description {
  font-size: 1.1rem;
  color: #ddd;
  margin-top: 30px;
  margin-bottom: 50px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  background-color: #1c1c1c;
  padding: 20px;
  width: 200px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-card div {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-card span {
  font-weight: bold;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.masonry-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Services Section */
.services {
  padding: 60px 20px;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  /* background-color: #1c1c1c; */
  padding: 20px;
  width: 200px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  color: #bbb;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background-color: #111;
}

.testimonials-grid {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #1c1c1c;
  padding: 20px;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonial p {
  font-size: 1rem;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #ff6b6b;
}

/* Location Section */
.map {
  padding: 60px 20px;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #111;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.socials a {
  margin: 0 10px;
  display: inline-block;
}

.socials img {
  width: 40px;
  height: 40px;
}

/* Footer */
.footer {
  padding: 20px 0;
  text-align: center;
  background-color: #111;
  color: #ddd;
}

.footer .back-to-top {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn, .hero-buttons .btn-outline {
    padding: 10px 20px;
  }

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

  .feature-card {
    width: 90%;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial {
    width: 90%;
    margin: 0 auto 20px;
  }

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

  .card {
    width: 90%;
  }
}


/* General Styling */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

p {
  color: #ddd;
  line-height: 1.6;
}

/* Ambience Section */
#gallery {
  /* background-color: #111; */
  padding: 80px 0;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.masonry-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease-in-out;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

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

.masonry-item img:hover {
  filter: brightness(0.85);
}

/* Our Services Section */
#services {
  /* background-color: #222; */
  padding: 80px 0;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: rgba(20, 20, 20, 0.8);
  
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  width: calc(33.333% - 20px);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  font-size: 1rem;
  color: #ddd;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.card:nth-child(odd) {
  /* background-color: #333; */
}

.card:nth-child(even) {
  /* background-color: #444; */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .masonry-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

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

  .card {
    width: 80%;
    margin-bottom: 20px;
  }

  h3.section-title {
    font-size: 1.8rem;
  }
}


/* Base nav list (hidden for mobile, shown for desktop) */
.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
}

/* Mobile-specific overrides */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    transition: right 0.4s ease;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Desktop: always show menu and hide toggle */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-list {
    position: static;
    flex-direction: row;
    height: auto;
    background: transparent;
    padding: 0;
  }
}


.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
}

#closeNav{
  font-size: 36px;

}

@media (min-width: 769px) {
  .close-btn {
    display: none;
  }
}

/* Testimonials Section - Dark Theme */
.testimonials {
  background-color: #0a0a0a;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(90, 10, 150, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.section-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
  border-radius: 3px;
}



.testimonial {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(110, 0, 255, 0.3);
  border-color: rgba(110, 0, 255, 0.3);
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #6e00ff, #ff00a0);
}

.testimonial p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  font-style: italic;
}

.testimonial p::before {
  position: absolute;
  left: -10px;
  top: -15px;
  font-size: 4rem;
  color: rgba(110, 0, 255, 0.2);
  font-family: serif;
}

.testimonial span {
  color: #a0a0a0;
  font-size: 0.9rem;
  display: block;
  font-weight: 600;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
}

/* Glow effect on hover */
.testimonial:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(110, 0, 255, 0.1) 0%, transparent 70%);
  animation: rotate-glow 6s linear infinite;
  z-index: -1;
}

@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .testimonial {
    padding: 2rem;
  }
}

/* Services Section - Cyberpunk Dark Theme */
.services {
  background-color: #0d0d12;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(90, 10, 150, 0.3);
  border-bottom: 1px solid rgba(90, 10, 150, 0.3);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 70%, rgba(110, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 0, 160, 0.08) 0%, transparent 40%);
  z-index: 0;
}

#services .section-title {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(110, 0, 255, 0.5);
}

#services .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
  border-radius: 3px;
}



.card {
  background: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(110, 0, 255, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(110, 0, 255, 0.3),
    0 0 15px rgba(255, 0, 160, 0.2) inset;
  border-color: rgba(255, 0, 160, 0.4);
}

.card h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 600;
}

.card h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
}

.card p {
  color: #b0b0b0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Price accent */
.card p {
  position: relative;
}

.card p::before {
  content: "»";
  color: #6e00ff;
  margin-right: 8px;
  font-weight: bold;
}

/* Hover Glow Effect */
.card:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 160, 0.1) 0%, transparent 70%);
  animation: rotate-glow 8s linear infinite;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services {
    padding: 4rem 1.5rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
  
  #services .section-title {
    font-size: 2rem;
  }
}

/* Animation */
@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* ====================== */
/* GALLERY - MOBILE FIRST */
/* ====================== */
.gallery {
  background: #000;
  padding: 4rem 1rem; /* Smaller padding on mobile */
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(110, 0, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 160, 0.15) 0%, transparent 40%);
  z-index: 0;
}

#gallery .section-title {
  color: #fff;
  font-size: 2rem; /* Smaller font on mobile */
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px; /* Tighter spacing on mobile */
  font-weight: 800;
  text-shadow: 0 0 10px rgba(110, 0, 255, 0.7);
}

#gallery .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* Shorter line on mobile */
  height: 3px;
  background: linear-gradient(90deg, #6e00ff 0%, #ff00a0 100%);
  border-radius: 4px;
}

/* ====================== */
/* MASONRY GRID - MOBILE FIRST */
/* ====================== */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Single column on small screens */
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem; /* Smaller gap on mobile */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem; /* Less padding on mobile */
}

.masonry-item {
  position: relative;
  border-radius: 8px; /* Slightly rounded on mobile */
  overflow: hidden;
  transform: scale(0.98);
  transition: all 0.4s ease-out; /* Faster transition for mobile */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(0.95);
}

/* Dynamic Sizing for Mobile & Desktop */
.masonry-item:nth-child(odd) {
  aspect-ratio: 4/3; /* Better mobile aspect ratio */
}

.masonry-item:nth-child(even) {
  aspect-ratio: 3/4; /* Creates variety */
}

/* ====================== */
/* TOUCH-FRIENDLY HOVER STATES */
/* ====================== */
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

/* Hover effects (works on tap for mobile) */
.masonry-item:active, /* Mobile tap effect */
.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 
    0 10px 25px rgba(110, 0, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: brightness(1.05);
  z-index: 2;
}

.masonry-item:active img,
.masonry-item:hover img {
  transform: scale(1.05);
}

/* ====================== */
/* DESKTOP ENHANCEMENTS (Only applies on larger screens) */
/* ====================== */
@media (min-width: 768px) {
  .gallery {
    padding: 6rem 2rem;
  }

  #gallery .section-title {
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 4rem;
  }

  #gallery .section-title::after {
    width: 100px;
    height: 4px;
    bottom: -20px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
  }

  /* Dynamic masonry layout (only on desktop) */
  .masonry-item:nth-child(3n+1) {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .masonry-item:nth-child(5n+2) {
    grid-column: span 1;
    aspect-ratio: auto;
  }

  .masonry-item:nth-child(7n+4) {
    grid-row: span 1;
    aspect-ratio: auto;
  }

  /* Hover effects (desktop-only enhancements) */
  .masonry-item:hover {
    transform: scale(1.03);
    box-shadow: 
      0 20px 40px rgba(110, 0, 255, 0.4),
      0 0 0 2px rgba(255, 255, 255, 0.1);
  }

  .masonry-item:hover img {
    transform: scale(1.08);
  }
}

/* ====================== */
/* LOADING ANIMATION (Works on all devices) */
/* ====================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.masonry-item {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.masonry-item:nth-child(1) { animation-delay: 0.1s; }
.masonry-item:nth-child(2) { animation-delay: 0.2s; }
.masonry-item:nth-child(3) { animation-delay: 0.3s; }
.masonry-item:nth-child(4) { animation-delay: 0.4s; }
.masonry-item:nth-child(5) { animation-delay: 0.5s; }


/* ====================== */
/* HERO SECTION - CLEAN & IMMERSIVE */
/* ====================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url('https://images.unsplash.com/photo-1560369457-fb1181a7ac4c?q=80&w=2070&auto=format&fit=crop') center/cover;
  z-index: -1;
  animation: subtle-zoom 30s ease infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(45, 0, 90, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  padding: 0 2rem;
  transform: translateY(-5%);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* ====================== */
/* CLEAN BUTTONS */
/* ====================== */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #6e00ff;
  color: white;
  box-shadow: 0 4px 15px rgba(110, 0, 255, 0.3);
}

.btn-primary:hover {
  background: #7a1aff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 0, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ====================== */
/* ANIMATIONS */
/* ====================== */
@keyframes subtle-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* ====================== */
/* RESPONSIVE ADJUSTMENTS */
/* ====================== */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    transform: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}


