    html {
    scroll-behavior: smooth; /* Ensures smooth scrolling on the whole page */
}
          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 */
}
@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 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;
      }
    }

        .collage-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* Patru coloane egale */
            /* Spațiu între imagini */
            width: 100%;
            height: 100vh; /* Înălțimea întregii pagini */
        }

        /* Fiecare element din colaj */
        .collage-item {
            width: 100%;
            height: 100%; /* Imaginile vor ocupa întregul spațiu al coloanei */
            overflow: hidden;
        }

        /* Stil pentru imagini */
        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Asigură că imaginea se potrivește complet în container, fără a fi distorsionată */
        }
.carousel img.active, .carousel_2 img.active {
    opacity: 1; /* Only the active image will be visible */
}

@media (max-width: 768px) {
            .collage-container {
                grid-template-columns: 4fr; /* Pe telefoane va fi o singură coloană */
            }

            .collage-item {
                height: 100vh; /* Pe telefoane fiecare imagine va ocupa întreaga înălțime a paginii */
            }
    .hero-text {
        top: 10%;
        padding: 0 10px; 
        position: fixed;
    }

    .dropdown-btn {
        top: 5%;
    }

    .instagram-icon {
        top: 50px;
        right: 10px;
        position: fixed;
    }
    
    .menu-toggle{
        top: 50px;
        margin: 0px;
        position: fixed;
    }
    
    .hero-image img {
        height: 100vh; /* Ensure image fills the screen on mobile */
    }
    
        .instagram-icon {
        top: 6%;
        right: 10px;
        position: fixed;
    }
        .instagram-icon a {
    display position: fixed;
    color: white;
    font-size: 40px;
    text-decoration: none;
}
   .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;
    }
}

/* 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 */
    }
}
.container {
    position: fixed; /* Keeps it fixed on the screen */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    padding: 30px;
    z-index: 2; /* Ensure it's above the image */
   */
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(69, 69, 69, 0.8);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.profile-card:hover {
    transform: translateX(30px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #000;
}

.profile-info h3 {
    margin: 5px 0;
    font-size: 1.2rem;
    color: white;
}

.profile-info p {
    font-size: 0.9rem;
    color: #fff;
}

.profile-info a {
    margin-top: 10px;
    display: inline-block;
    color: #fff;
    background: #333;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.profile-info a:hover {
    background: red;
}

