          body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

.hero-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}
@font-face {
    font-family: 'GUDZFont';
    src: url('GUDZFont.woff2') format('woff2'),
         url('GUDZFont.woff') format('woff');
}
.hero-text h2 {
    font-size: 90px;
    letter-spacing: 5px;
    color: white;
    font-family: 'GUDZFont';
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;"
}

.instagram-icon {
    display position: fixed;
    position: absolute;
    top: 5.5%;
    right: 20px;
    z-index: 2;
}

.instagram-icon a {
display position: fixed;
    color: white;
    font-size: 70px;
    text-decoration: none;
}

.instagram-icon a:hover {
    color: #E4405F; /* Instagram red color on hover */
}
.hero-image {
    display position: fixed;
    position: fixed;
    width: 100%;
    height: 100vh; /* Ocupă întreaga înălțime a ecranului */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Suprapunere întunecată pe imagine */
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Culoare neagră cu opacitate de 50% */
    z-index: 1; /* Se asigură că este deasupra imaginii, dar sub text */
}
.container {
    position: absolute;
    top: 800px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    padding: 30px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

  .service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(69, 69, 69, 0.8);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service:hover {
    transform: translateY(-5px) translateX(10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .service img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid black;
    margin-right: 15px;
    color: white;
  }

  .service-description h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #d32f2f; /* A softer red */
  }

  .service-description p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #fff; /* Dark gray for better readability */
    line-height: 1.6;
  }

.prices {
  text-align: center; /* Center-align for a cleaner look */
  background-color: #f8f8f8; /* Soft background color */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-category {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333; /* Darker text for better contrast */
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d32f2f; /* A more prominent red */
}

.price-description {
  font-size: 0.9rem;
  color: #666; /* Lighter text for details */
  line-height: 1.6;
}
@media (max-width: 768px) {
    .hero-overlay-text h1{
    font-size: 2rem;
    }
    .dropdown.active ~ .hero-image .container {
    display: none;
    }
    .hero-overlay-text span {
        font-size: 1rem;
    }
    .hero-image img {
        height: 100vh; /* Imagine ocupă întregul ecran pe dispozitive mobile */
    }

    .hero-text h2 {
        font-size: 3rem; /* Font mai mic pe mobil */
        top: 10%;
    }

    .hero-text p {
        font-size: 1.2rem; /* Font mai mic pe mobil */
        margin-top: 10px; /* Mai puțin spațiu între titlu și motto */
    }

    .hero-text {
        top: 10%;
        padding: 0 10px; /* Mai puțin padding pe mobil */
    }
    .dropdown-btn {
    top: 5%;
    }
    .container {
    position: absolute;
    top: 900px;}
}


   .menu-toggle {
      top: 7%;
      left: 20px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: top;
      width: 60px;
      height: 40px;
      position: absolute;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }

    /* Bars styling */
    .bar {
      background-color: #fff;
      height: 6px;
      width: 100%;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

  /* Hover effect on button */
    .menu-toggle:hover .bar {
      background-color: red;
    }
        .menu-toggle.open:hover .bar {
      background-color: red;
    }

    /* Menu open state (Hamburger -> X) */
    .menu-toggle.open .bar {
      background-color: white; /* Make bars white when the button is in the open state */
    }

    .menu-toggle.open .bar:nth-child(1) {
      transform: rotate(45deg);
      position: absolute;
      top: 50%;
      transform-origin: center;
    }

    .menu-toggle.open .bar:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
      transform: rotate(-45deg);
      position: absolute;
      top: 50%;
      transform-origin: center;
    }

    /* Sidebar styling */
    .sidebar {
      position: fixed;
      left: 0;
      top: 0;
      width: 0; /* Initially hidden */
      height: 100%;
      background-color: rgba(15, 15, 15, 0.9); /* Dark background */
      display: flex;
      flex-direction: column;
      align-items: center; /* Center items horizontally */
      justify-content: center; /* Center items vertically */
      overflow: hidden;
      z-index: 999;
      transition: width 0.3s ease-in-out;
    }

    /* When the sidebar is active */
    .sidebar.active {
      width: 300px; /* Expand the sidebar to this width when active */
    }

    /* Sidebar links styling */
    .sidebar a {
      color: #d4d4d4; /* Light gray text */
      padding: 20px;
      font-size: 1.6rem;
      font-weight: bold;
      text-decoration: none;
      display: block;
      text-align: center;
      width: 100%; /* Make links take up full width */
      transition: all 0.3s ease;
    }

    /* Hover effect for links */
    .sidebar a:hover {
      color: red;
      font-size: 1.8rem;
      transform: translateY(5px);
    }

    /* Media Query for mobile (screen width less than 768px) */
    @media screen and (max-width: 768px) {
      .sidebar.active {
        width: 100%; /* Make the sidebar take full width on mobile */
        text-align: center;
      }
      .sidebar{
      text-align: center;
      }
    }
@media (max-width: 768px) {
    .container {
        position: absolute;
        top: 1000px; /* Increased top value for better spacing */
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 800px;
        width: 90%;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 0;
    }
        .hero-text h2 {
        font-size: 3rem; /* Smaller font size on mobile */
        top: 5px;
        position: sticky;
    }
    .hero-text {
        top: 10%;
        padding: 0 10px; 
        position: fixed;
    }
    .instagram-icon {
        top: 6%;
        right: 10px;
        position: fixed;
    }
        .instagram-icon a {
    display position: fixed;
    color: white;
    font-size: 40px;
    text-decoration: none;
}
    

    .hero-image img {
        height: 100vh; /* Ensure image fills the screen on mobile */
    }
    
        
   .menu-toggle {
      top: 50px;
      left: 5px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: top;
      width: 50px;
      height: 30px;
      position: fixed;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }

    /* Bars styling */
    .bar {
      background-color: #fff;
      height: 4px;
      width: 100%;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
}

/* Carousel */
.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Carousel images */
.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the image covers the full area without stretching */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;  /* Initially hide all images */
    transition: opacity 1s ease-in-out;
}

/* Make the active image visible */
.carousel img.active {
    opacity: 1;  /* Only the active image will be visible */
}

/* Ensure the images take up the full screen */
.carousel img {
    width: 100%;               /* Ensure the image takes the full width */
    height: 100vh;             /* Make the image take the full viewport height */
    object-fit: cover;         /* Ensures the image covers the container without distortion */
    object-position: center;
    opacity: 0;                /* Make images initially invisible */
    transition: opacity 1s ease-in-out;/* Centers the image */
}
/* Adjustments for mobile responsiveness (if needed) */
@media (max-width: 768px) {
    .carousel-container {
        height: 100vh;  /* Keep height as full screen on smaller devices */
    }
}

/* Default images (for larger screens) */
.carousel img {
    width: 100%;
    height: 100%;
}

/* For mobile devices (up to 767px) */

/* General carousel styling */
.carousel, .carousel_2 {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide overflowed images */
}

/* Style for images inside the carousel */
.carousel img, .carousel_2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area without distortion */
    opacity: 0; /* Initially hide all images */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}

/* Make the active image visible */
.carousel img.active, .carousel_2 img.active {
    opacity: 1; /* Only the active image will be visible */
}

/* Mobile-specific carousel settings */
@media (max-width: 768px) {
    /* Hide the desktop carousel and show the mobile carousel */
    .carousel {
        display: none;
    }

    .carousel_2 {
        display: block; /* Show mobile carousel */
    }
}

/* Desktop-specific carousel settings */
@media (min-width: 769px) {
    /* Hide the mobile carousel and show the desktop carousel */
    .carousel_2 {
        display: none;
    }

    .carousel {
        display: block; /* Show desktop carousel */
    }
}
