/* RESET */

/* CUSTOM CURSOR */
body {
  cursor: url("Website content/Cursor-Logo.cur"), auto;
}


a, button {
  cursor: pointer;
}





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

body {
  background: #000;
}

/* REMOVE ALL LINK UNDERLINES */
a {
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 60px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* NAV LINKS */
.nav-link {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  opacity: 0.9;
  transition: 0.3s;
}

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

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);

  padding: 20px;
  border-radius: 12px;

  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: all 0.25s ease;
}

/* KEEP OPEN */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  color: white;
}

/* SECTION TITLE */
.section-title {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 10px 0;
}

/* WHATSAPP */
.nav-icon i {
  font-size: 18px;
  color: white;
  opacity: 0.9;
}

.nav-icon:hover i {
  color: #25D366;
}

/* CONTACT */
.contact {
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
}

/* SLIDES */
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100px);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s ease-in-out;
}

.slide.active img {
  transform: scale(1.08);
}

.slide.exit {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-in-out;
}

/* ================= TEXT (FINAL FIXED VERSION) ================= */

/* TEXT LAYER */
.text-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* TEXT BLOCK */
.text {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: translateX(100px);
}

/* ACTIVE TEXT */
.text.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s ease-in-out;
}

/* EXIT TEXT */
.text.exit {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease-in-out;
}

/* HERO TEXT */
.text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 1px;
  word-spacing: 6px;

  color: rgba(255,255,255,0.9);

  text-align: center;
  white-space: nowrap;

  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* ITALIC WORD */
.text span {
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

/* SCROLL */
.scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  z-index: 10;
}

/* SCROLL ARROW */
.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 8px auto;
  animation: bounce 1.5s infinite;
}

/* SOCIAL */
.socials {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none; /* NO UNDERLINE */
}

/* HOVER COLORS */
.socials a.facebook:hover { background: #1877F2; }
.socials a.instagram:hover { background: #E1306C; }
.socials a.linkedin:hover { background: #0A66C2; }
.socials a.whatsapp:hover { background: #25D366; }

/* ANIMATION */
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(8px) rotate(45deg); }
}