/* Enhanced Navbar Styling - Add to style.css or create separate file */

/* Navbar Container */
.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 107, 107, 0.1);
}

/* Logo with hover animation */
.navbar .logo {
  transition: transform 0.3s ease;
}

.navbar .logo:hover {
  transform: scale(1.05);
}

.navbar .logo img {
  filter: brightness(1.1);
}

/* Navigation Links with underline animation */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #ff6b6b, #ff9999);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ff9999;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Enhanced Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 40px 0;
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links::before {
    content: '';
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links.active::before {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li a {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
}

/* ============================================
   CAROUSEL IMPROVEMENTS
   ============================================ */

.carousel {
  margin-top: -4px;
  background: #000;
}

.carousel-item {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active img {
  transform: scale(1.02);
}

/* Enhanced Indicators */
.carousel-indicators {
  bottom: 30px;
  gap: 8px;
  justify-content: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 0;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.carousel-indicators [data-bs-target].active {
  background-color: #ff6b6b;
  border-color: #ff6b6b;
  width: 16px;
  height: 12px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

/* Enhanced Controls */
.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.6;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background: rgba(255, 107, 107, 0.8);
  border-color: #ff6b6b;
  opacity: 1;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-control-next,
  .carousel-control-prev {
    width: 40px;
    height: 40px;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  .carousel-indicators [data-bs-target].active {
    width: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
}

/* ============================================
   HEADER TOP SECTION IMPROVEMENTS
   ============================================ */

.header-top-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-list {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 0.9rem;
}

.contact-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list li a:hover {
  color: #ff6b6b;
}

.contact-list .icons {
  filter: brightness(1.2);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon span {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-icon a {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 5px;
}

.social-icon a:hover {
  transform: translateY(-3px);
  filter: brightness(1.3);
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(1.1);
}

/* Responsive Header Top */
@media (max-width: 768px) {
  .header-top-section {
    padding: 10px 0;
  }

  .contact-list {
    gap: 15px;
    font-size: 0.85rem;
  }

  .contact-list li {
    gap: 6px;
  }

  .top-right {
    gap: 15px;
  }

  .social-icon {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .contact-list {
    flex-direction: column;
    gap: 10px;
  }

  .header-top-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
