/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* Typography */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 24px 48px;
  }
}

.nav-brand {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .mobile-menu-content {
    padding: 48px;
  }
}

.menu-link {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.menu-link:hover {
  opacity: 0.6;
}

/* Enhanced full-width hero slider */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.slide.active .slide-image {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slide-text {
  max-width: 800px;
  text-align: center;
  padding: 0 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.3s;
}

.slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slide-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 14px 36px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  backdrop-filter: blur(8px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 48px;
}

/* Enhanced slide navigation controls */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slide-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slide-nav-prev {
  left: 32px;
}

.slide-nav-next {
  right: 32px;
}

/* Enhanced slide indicators with labels */
.slide-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  z-index: 10;
}

.slide-indicator {
  position: relative;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slide-indicator:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slide-indicator.active {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.indicator-label {
  display: none;
}

@media (min-width: 768px) {
  .indicator-label {
    display: inline;
  }
}

/* Progress bar for slide timing */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: #ffffff;
  width: 0%;
  transition: width 0.1s linear;
}

.discover-more {
  position: absolute;
  bottom: 80px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  padding: 12px 20px;
  transition: all 0.3s ease;
  z-index: 10;
}

.discover-more:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 128px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.services-content {
  text-align: left;
}

.services-list {
  margin-bottom: 3rem;
}

.service-item {
  margin-bottom: 2rem;
}

.service-title {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
}

.services-image {
  position: relative;
}

.service-img {
  width: 100%;
  height: 384px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .service-img {
    height: 500px;
  }
}

/* Enhanced gallery with overlay effects */
.gallery {
  padding: 128px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

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

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

/* Contact Section */
.contact {
  padding: 128px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.contact-title {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-link {
  font-size: 1.125rem;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.6;
}

.contact-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 8px;
}

.contact .btn-large {
  display: block;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid #333333;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-nav-prev {
    left: 16px;
  }

  .slide-nav-next {
    right: 16px;
  }

  .slide-nav {
    width: 48px;
    height: 48px;
  }

  .slide-indicators {
    bottom: 60px;
    gap: 16px;
  }

  .discover-more {
    right: 24px;
    bottom: 60px;
    padding: 10px 16px;
  }

  .slide-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .slide-description {
    font-size: 1.125rem;
  }

  .services,
  .gallery,
  .contact {
    padding: 80px 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
