/* Header container */
header {
  position: absolute; /* Positioned above the slider */
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(236, 193, 160, 0.3);
}

.header-transparent {
  background-color: transparent !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 40px; /* Same padding as the content */
  position: relative;
}


/* Social media icons aligned to the left */
.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media a {
  margin-right: 20px;
  color: #303030; /* Default color */
  text-decoration: none;
  font-size: 24px; /* Adjust size as needed */
}

.social-media a:hover {
  color: #fff;
}


.social-media i {
  width: 24px;
  height: 24px;
}

.social-media-burger-menu {
  display: none;
}

/* Navigation menu aligned to the right */
.menu {
  display: flex;
  align-items: center;
}

.menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 15px;
}

.menu ul li {
  display: flex;
  align-items: center;
  position: relative;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  /*font-weight: bold;*/
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.menu ul li a:hover {
  color: #fff; /* Change color on hover */
}

/* Dot styling */
.menu ul li.dot {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  color: #303030;
  margin: 0 10px; /* Adjust spacing to center dots */
}

/* Header bottom border with same padding as content */
/*.header-container::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -21px; !* Adjust this value to move the border down *!*/
/*  left: 40px; !* Matches left padding *!*/
/*  right: 40px; !* Matches right padding *!*/
/*  border-bottom: 2px solid #303030;*/
/*}*/

/* Centered logo */
.logo {
  position: absolute; /* Center the logo */
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px; /* Add padding to create space between logo and border */
}

.logo img {
  max-height: 50px;
  margin-bottom: -10px;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  left: 40px; /* Align to the left with the same padding as the header */
}

.burger-menu span {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}


.menu ul li.dropdown {
  position: relative;
}

.menu ul li.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Position the dropdown below the parent */
  left: -20%;
  background-color: rgba(244, 225, 208, 0.75);

  /*background-color: rgba(236, 193, 160, 0.75);*/
  min-width: 170px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1rem;
}

.menu ul li.dropdown .dropdown-content li {
  padding: 12px 16px;
  text-align: center;
}

.menu ul li.dropdown .dropdown-content li a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.menu ul li.dropdown .dropdown-content li a:hover {
  color: #fff;
}

.menu ul li.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
}


.special {
  color: rgba(48, 48, 48, 1) !important;
  font-weight: 550;
  animation: pulse 2s infinite; /* Pulsing animation */
  padding: 5px 10px; /* Padding for better spacing */
  /*background-color: rgba(57, 33, 33, 0.5); !* Bright red background *!*/
  /*font-size: 1.5em; !* Larger font size *!*/
  /*font-weight: bold; !* Bold text *!*/
  /*border-radius: 100%; !* Rounded corners *!*/
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); !* Shadow for depth *!*/
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.only-mobile-menu {
  display: none !important;
}

@media (max-width: 1600px) {
  .menu ul {
    gap: 8px;
    font-size: 15px;
  }
  .social-media i {
    width: 20px;
    height: 20px;
  }
  .social-media a {
    font-size: 20px; /* Adjust size as needed */
  }
}

@media (max-width: 1024px) {
  .menu ul {
    gap: 0;
    font-size: 14px;
  }

  .social-media {
    gap: 0;
  }
}


/* Responsive Design */
@media (max-width: 768px) {

  .menu ul {
    gap: 10px;
    font-size: 20px;
  }
  .social-media {
    padding-top: 35px;
    gap: 10px;
  }

  .header-container {
    flex-direction: column;
    padding: 10px 20px; /* Reduce padding on smaller screens */
  }

  .social-media {
    margin-bottom: 10px;
  }

  .header-container::after {
    left: 20px; /* Adjust padding on smaller screens */
    right: 20px;
  }

  .header-container::after {
    display: none;
  }

  .menu ul li.dot {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(244, 225, 208, 0.9);
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    z-index: 999;
  }

  .menu ul {
    flex-direction: column;
    width: 100%;
  }

  .menu ul li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .menu ul li a {
    width: 100%;
    display: block;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
  }

  .menu ul li a:hover {
    color: #fff; /* Change color on hover */
  }

  .menu.active {
    display: flex;
  }

  .header-container .social-media {
    display: none;
  }

  /* Social media icons inside the burger menu */
  .menu .social-media-burger-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }

  .menu .social-media-burger-menu a {
    margin: 0 10px;
  }

  .menu ul li.dropdown {
    margin: 0 auto;
    text-align: center;
  }

  .menu ul li.dropdown.dropdown-gallerie {
    display: none !important;
  }

  .a-dropdown-toggle {
    display: none !important;
  }

  .menu ul li.dropdown .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    top: 100%; /* Position the dropdown below the parent */
    left: 0;
  }

  .menu ul li.dropdown .dropdown-content li {
    padding: 10px 0;
  }

  .menu ul li.dropdown .dropdown-content li a {
    color: #333;
  }

  .menu ul li.dropdown .dropdown-content li a:hover {
    color: #fff;
  }
}

@media (max-width: 1264px) {
  .logo {
    display: none;
  }
}


@media (max-width: 768px) {
  header {
    background: transparent;
  }

  .only-mobile-menu {
    margin-top: 40px;
    display: block !important;
  }

  .hero-overlay h1 {
    font-size: 2.5rem;
    right: 10%;
    bottom: 23%;
  }
}

@media (max-width: 425px) {
  header {
    background: transparent;
  }

  .only-mobile-menu {
    margin-top: 40px;
    display: block !important;
  }

  .hero-overlay h1 {
    font-size: 1.5rem;
    right: auto;
    bottom: 30%;
  }
}
