/* [project]/src/components/Navbar.module.css [app-client] (css) */
.Navbar-module__cJzEcG__navbar {
  z-index: 1000;
  width: 100%;
  transition: all var(--transition-normal);
  color: #fff;
  padding: 2.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
}

.Navbar-module__cJzEcG__scrolled {
  color: hsl(var(--foreground));
  background: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 4px 30px #00000008;
}

.Navbar-module__cJzEcG__container {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.Navbar-module__cJzEcG__logoText {
  font-family: var(--font-heading);
  letter-spacing: -.05em;
  font-size: 2rem;
  font-weight: 700;
}

.Navbar-module__cJzEcG__links {
  gap: 4rem;
  display: none;
}

@media (min-width: 1024px) {
  .Navbar-module__cJzEcG__links {
    display: flex;
  }
}

.Navbar-module__cJzEcG__link {
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
  font-size: .9rem;
  font-weight: 500;
}

.Navbar-module__cJzEcG__actions {
  align-items: center;
  gap: 2.5rem;
  display: flex;
}

.Navbar-module__cJzEcG__loginLink {
  text-transform: uppercase;
  letter-spacing: .1em;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.Navbar-module__cJzEcG__menuBtn {
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* [project]/src/components/HeroSection.module.css [app-client] (css) */
.HeroSection-module__sBkrQG__hero {
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.HeroSection-module__sBkrQG__imageWrapper {
  z-index: -1;
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
}

.HeroSection-module__sBkrQG__image {
  object-fit: cover;
}

.HeroSection-module__sBkrQG__overlay {
  background: linear-gradient(#0003 0%, #0006 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.HeroSection-module__sBkrQG__content {
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  position: relative;
}

.HeroSection-module__sBkrQG__eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .3em;
  opacity: .8;
  margin-bottom: 2rem;
  font-size: .9rem;
  display: block;
}

.HeroSection-module__sBkrQG__title {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: .9;
}

.HeroSection-module__sBkrQG__subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-body);
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.4;
}

.HeroSection-module__sBkrQG__cta {
  justify-content: center;
  display: flex;
}

.HeroSection-module__sBkrQG__scrollIndicator {
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .6;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  display: flex;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.HeroSection-module__sBkrQG__line {
  transform-origin: top;
  background: #fff;
  width: 1px;
  height: 60px;
  animation: 2s cubic-bezier(.16, 1, .3, 1) infinite HeroSection-module__sBkrQG__scrollLine;
}

@keyframes HeroSection-module__sBkrQG__scrollLine {
  0% {
    transform: scaleY(0);
  }

  50% {
    transform: scaleY(1);
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/* [project]/src/components/Services.module.css [app-client] (css) */
.Services-module__dpHhBa__servicesSection {
  background: hsl(var(--background));
  padding: 10rem 0;
}

.Services-module__dpHhBa__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.Services-module__dpHhBa__sectionTitle {
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.Services-module__dpHhBa__sectionSubtitle {
  opacity: .7;
  font-size: 1.1rem;
}

.Services-module__dpHhBa__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4rem;
  display: grid;
}

.Services-module__dpHhBa__card {
  text-align: left;
}

.Services-module__dpHhBa__iconWrapper {
  width: 48px;
  height: 48px;
  color: hsl(var(--accent));
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.Services-module__dpHhBa__title {
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.Services-module__dpHhBa__desc {
  color: hsl(var(--foreground));
  opacity: .6;
  font-size: 1rem;
  line-height: 1.7;
}

/* [project]/src/components/Gallery.module.css [app-client] (css) */
.Gallery-module__3QxX8q__gallerySection {
  background: hsl(var(--background));
  padding: 10rem 0;
}

.Gallery-module__3QxX8q__header {
  max-width: 600px;
  margin-bottom: 6rem;
}

.Gallery-module__3QxX8q__title {
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.Gallery-module__3QxX8q__subtitle {
  opacity: .7;
  font-size: 1.1rem;
}

.Gallery-module__3QxX8q__grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  display: grid;
}

.Gallery-module__3QxX8q__card {
  position: relative;
  overflow: hidden;
}

.Gallery-module__3QxX8q__imageWrapper {
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.Gallery-module__3QxX8q__imageInner {
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
}

.Gallery-module__3QxX8q__image {
  object-fit: cover;
}

.Gallery-module__3QxX8q__content {
  text-align: left;
}

.Gallery-module__3QxX8q__subTitle {
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .5;
  margin-bottom: .5rem;
  font-size: .8rem;
  display: block;
}

.Gallery-module__3QxX8q__destName {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: hsl(var(--foreground));
}

/*# sourceMappingURL=src_components_111941f._.css.map*/