/* ==== BASE STYLES ==== */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #f9f9f9;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: visible;
}
html {
  overflow-x: hidden;
} 



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

/* ==== NAVIGATION BAR ==== */
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ff0066;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

.horizontal-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  overflow-x: visible;
}

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

.horizontal-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
}

.horizontal-menu li {
  flex-shrink: 0;
}

.menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #007BFF;
  transition: width 0.3s ease;
}

.menu-link:hover::after{
  width: 100%;
}

.menu-link:hover {
  color: #ee01df;
}

@media (max-width: 768px) {
  .horizontal-menu {
    display: none;
  }
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  min-width: 200px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown.open .dropdown-content {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content li a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  width: 100%;
}

.dropdown-content li a:hover {
  background-color: #111;
}

.arrow {
  font-size: 0.6em;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.dropdown-content.show-dropdown {
  display: block;
}


/*Mobile menu */
/* HIDE mobile menu and toggle button on desktop */
.mobile-menu,
.mobile-menu-button {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #000000;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    font-size: 1.2rem;
    z-index: 1000;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 3.5rem;
    right: 0;
    background-color: #000000;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu li {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid #000000;
  }

  .mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
  }

  .mobile-menu.show {
    display: block;
  }

  .mobile-menu li.dropdown .dropdown-content {
    position: static;
    display: none;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    margin: 0 1rem 3rem 2rem;
    width: auto;
    background-color: #6c6a6a;
    border-radius: 4px;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    padding-left: 22px;
  }

  .dropdown-toggle:hover {
    color: #ee01df;
  }

  .dropdown-toggle .arrow {
    margin-left: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
  }

  .dropdown-toggle:hover .arrow {
    color: #ee01df;
  }

  .mobile-menu li.dropdown.open > ul.dropdown-content {
    display: block;
  }

  .mobile-menu .arrow {
    float: right;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }

  .mobile-menu li.dropdown.open > a .arrow {
    transform: rotate(180deg);
  }

  .mobile-menu li.dropdown > a {
    cursor: pointer;
    user-select: none;
  }
}

/* ==== HEADER SECTION ==== */
.hero {
  position: relative;
  background-color: #3b383f;
  color: hsl(0, 0%, 98%);
  text-align: center;
  overflow: hidden;

  /* Adjust padding for more height */
  padding-top: 14rem;  /* More top space = taller header */
  padding-bottom: 12rem; /* Enough space above the SVG wave */
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero h1 {
  font-size: 3rem;

  /* Move heading text upward */
  margin-top: -4rem;  /* Pull up the text */
  margin-bottom: 1rem;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}



/* ==== SERVICE SECTION ==== */
.service-section {
  color: #000000;
  display: flex;  
  background-color: #eae9e9;
  align-items: center;
  padding: 3rem 2rem;
  gap: 2rem;
}

.service-section.alt {
  flex-direction: row-reverse;
  background-color: #f9f9f9;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-text p {
  font-size: 1.1rem;
  max-width: 600px;
}

.service-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


.contact-cta {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.contact-cta h2 {
  font-size: 2rem;
}

.contact-cta p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.cta-button {
  background-color: #fff;
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}


/* ==== CONTACT BLOCK ==== */
.contact-block {
  background: #080808;
  background-size: cover;
  padding: 80px 5%;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .contact-block {
    background-attachment: scroll;
  }
}

.contact-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
}

.contact-block h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-block a {
  background-color: white;
  color: #ff0066;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.contact-block a:hover {
  background-color: #d3d3d3;
}
/* Footer */
footer {
  text-align: center;
  padding: 0.5em;
  background: #eee;
  color:#000000;
}