/* Reset & Variables - Ultra Premium Minimalist Vibe */
:root {
  --bg-color: #030303;
  --bg-alt: #080808;
  --text-primary: #eaeaea;
  --text-secondary: #999999;
  --accent-color: #c8102e; /* Premium Red */
  --accent-hover: #e31837;
  --font-heading: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #030303;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(
      circle at 0% 20%,
      rgba(200, 16, 46, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 60%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 40%
    );
}

/* Global Elements */
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.4s ease;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.text-center {
  text-align: center;
}

/* Premium Text Utility */
.gold-text,
.accent-text {
  color: var(--accent-color);
  display: inline-block;
}
.white-text {
  color: #ffffff !important;
  display: inline-block;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 2px;
}
.section-header {
  margin-bottom: 5rem;
}
.section-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.decorative-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  margin: 2rem 0;
}
.decorative-line.center {
  margin: 1.5rem auto;
  width: 120px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(200, 16, 46, 0.2);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
  color: #fff;
  background: var(--accent-hover);
}
.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  transform: translateY(-3px);
}
.btn-group {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

/* Floating Button - Sleek & Minimal */
.floating-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  background-color: var(--accent-color);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  line-height: 1.2;
  z-index: 990;
  box-shadow: 0 10px 40px rgba(200, 16, 46, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.floating-btn:hover {
  background-color: var(--accent-hover);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(200, 16, 46, 0.4);
}

/* Header with Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 35px 0;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  padding: 15px 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2.2rem;
  letter-spacing: 8px;
  font-weight: 700;
}
.nav-list {
  display: flex;
  gap: 40px;
}
.nav-list a {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  transition: width 0.3s;
}
.nav-list a:hover {
  color: #fff;
}
.nav-list a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
}
.menu-toggle:hover {
  color: #fff;
}
.menu-toggle svg {
  display: block;
}
.nav-close {
  display: none;
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s ease;
}
.nav-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

/* Hero Slider (Vignette & Parallax feel) */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition:
    opacity 1.5s ease-in-out,
    transform 8s ease-out;
  transform: scale(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Deep Cinematic Vignette */
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.95) 100%
  );
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: transform 1.5s ease;
}
.slide.active .slide-content {
  transform: translateY(0);
}
.slide-subtitle {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}
.slide-content h2 {
  font-size: 5.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}
.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 10;
  display: flex;
  gap: 15px;
}
.slider-controls button {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}
.slider-controls button:hover {
  border-color: var(--accent-color);
  background: rgba(200, 16, 46, 0.2);
  color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(200, 16, 46, 0.3);
}

/* Custom Sections */
.section {
  padding: 140px 0;
  position: relative;
}
.about {
  background: radial-gradient(circle at top right, #111111 0%, #050505 100%);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
}
.about-image {
  position: relative;
  padding: 30px;
}
.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200, 16, 46, 0.3);
  z-index: 0;
  transition: all 0.5s ease;
}
.about-image::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  filter: grayscale(40%) contrast(110%);
  transition: all 0.8s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.about-image:hover::before {
  top: 10px;
  left: 10px;
  border-color: var(--accent-color);
}
.about-image:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: translateY(-5px);
}

/* Gallery */
.gallery {
  background: radial-gradient(
    circle at bottom center,
    #111111 0%,
    #030303 100%
  );
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0.5;
  transition: 0.5s;
  z-index: 2;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition:
    opacity 0.8s ease,
    transform 1s ease;
}
.gallery-item:hover::after {
  opacity: 0;
}
.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Contact Section & Map */
.contact {
  background-color: var(--bg-alt);
  background-image: linear-gradient(to bottom, #080808, #000);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.02);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-item {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(200, 16, 46, 0.3);
}
.info-item h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
}
.info-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.contact-map {
  width: 100%;
  min-height: 450px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(15%) brightness(95%);
  transition: filter 0.5s;
}
.contact-map:hover iframe {
  filter: grayscale(0%) brightness(100%);
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  text-align: center;
  background-color: #000;
  color: #aaaaaa;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide-content h2 {
    font-size: 4rem;
  }
  .contact-container {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1005; /* Higher than menu-toggle */
  }
  .nav.active {
    left: 0;
  }
  .nav.active ~ .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }
  .nav-close {
    display: block;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001; 
    transition: opacity 0.3s ease;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
  }

  .slide-content h2 {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .floating-btn {
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    font-size: 0.7rem;
  }
  .slider-controls {
    left: 20px;
    bottom: 30px;
  }
  .contact-container {
    padding: 20px;
    border: none;
    background: transparent;
    backdrop-filter: none;
  }
  .contact-map {
    margin: 20px 0 0;
    border-radius: 8px;
    width: 100%;
    min-height: 350px;
    position: relative;
    left: 0;
    margin-left: 0;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grouped elements */
.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.1s;
}
.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.25s;
}
.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.4s;
}
.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.1s;
}
.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.25s;
}
.gallery-grid .gallery-item:nth-child(6) {
  transition-delay: 0.4s;
}

.contact-info .info-item:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-info .info-item:nth-child(2) {
  transition-delay: 0.25s;
}
.contact-info .info-item:nth-child(3) {
  transition-delay: 0.4s;
}
