/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Social Bar */
.top-bar {
  background-color: #5b1c24;
  padding: 10px 0;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b1c24;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #333;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #5b1c24;
}

.nav-link i {
  font-size: 10px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #5b1c24;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  background-image: url('https://ext.same-assets.com/135081627/2599583097.jpeg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 2;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  text-align: right;
  color: white;
  z-index: 10;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
  font-weight: 700;
  color: #5b1c24;
  font-size: 70px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  display: block;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  background-color: #5b1c24;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}

.hero-button:hover {
  background-color: white;
  color: #5b1c24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 28, 36, 0.4);
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background-color: rgba(91, 28, 36, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 30px;
}

.slider-arrow-right {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.dot:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.dot.active {
  background-color: #5b1c24;
  box-shadow: 0 4px 12px rgba(91, 28, 36, 0.4);
  border-color: white;
}

/* CTA Section */
.cta-section {
  background-image: url('https://ext.same-assets.com/135081627/3389780416.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 27, 29, 0.85);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-content h2 {
  font-size: 48px;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 18px;
  color: #b3bcc1;
  font-weight: 300;
}

.cta-button-wrapper {
  display: flex;
  gap: 15px;
}

.cta-button {
  background-color: white;
  color: #5b1c24;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #5b1c24;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91, 28, 36, 0.4);
}

.cta-button i {
  font-size: 20px;
}

/* Footer */
.footer {
  background-color: #181b1d;
  color: #757677;
  text-align: center;
  padding: 25px 0;
}

.footer p {
  font-size: 14px;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .logo img {
    height: 60px;
  }

  .hero {
    height: 500px;
  }

  .hero-content {
    right: 5%;
    top: 50%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content .highlight {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-section .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .slider-dots {
    bottom: 20px;
  }

  .dot {
    width: 40px;
    height: 40px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-arrow-left {
    left: 15px;
  }

  .slider-arrow-right {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content .highlight {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .social-icons {
    justify-content: center;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .dot {
    width: 30px;
    height: 30px;
  }
}
