/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5; 
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.1) 2px, transparent 2px); 
  background-size: 30px 30px; /* Adjust size of the dots */
  background-repeat: repeat;
}

/* Header Section */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8); /* transparent black */
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
}

.hamburger {
  margin-left: auto; /* hamburger aligned right */
}


header .logo img {
  width: 120px;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
}

header nav ul li a:hover {
  color: #c800ff;
  text-decoration: none;
  transform: scale(1.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Mobile View (Hamburger Menu) */
header nav {
  display: flex;
}

header .hamburger {
  display: none; /* Hidden on desktop */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

header .hamburger div {
  width: 30px;
  height: 5px;
  background-color: white;
}

@media (max-width: 768px) {
  /* Navbar */
  header nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0px;
  }

  header nav.active ul {
    display: flex;
  }

  header .hamburger {
    display: flex;
  }
 /* Hamburger */
 header .hamburger {
  display: flex; 
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

header .hamburger div {
  width: 30px;
  height: 5px;
  background-color: white;
}

  /* Hero Section */
  .hero {
    flex-direction: column; 
    text-align: center;
    margin-top: 100px; 
  }

  .hero-graphic {
    display: none;
    margin-bottom: 20px; 
  }

  .hero-text h1,
  .hero-text p {
    max-width: 100%; 
    text-align: center; 
    width: 100%; 
  }

  .hero-text .btn {
    display: block;       
    padding: 10px 20px;
    background-color: #c800ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px auto;      
    max-width: 300px;      
  }
  
  
  

  .title {
    display: none; /* Hide title on smaller screens */
  }
}


/* Title (Larger screens) */
.title {
  font-family: 'Roboto', sans-serif;
  font-size: 5vw; 
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 20%;  
  left: 50%;  
  transform: translate(-50%, -50%);  
  color: rgba(0, 0, 0, 0.8);  
  white-space: nowrap;  
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 80px 20px;  
  margin-top: 125px;     
  flex-direction: row; 
}

.hero .hero-graphic {
  margin-right: 20px;  
}

.hero .hero-text {
  margin-left: 20px;
  max-width: 800px;  
  width: 100%;       
  text-align: left;  
}

.hero-graphic img {
  width: 500px;
  border-radius: 15px;  
}

.hero-text h1 {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-text .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c800ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.hero-text .btn:hover {
  background-color: #780199;
}

/* Slideshow Section */
.slideshow {
  padding-top: 5px;  
}

.slideshow-container {
  position: relative;
  max-width: 750px;
  height: 500px;
  margin: 30px auto;
  overflow: hidden;
  border: 3px solid #c800ff;  
  border-radius: 15px;
  padding: 30px;  
}

.slides {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out;  
}

.slideshow-container .prev, 
.slideshow-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.slideshow-container .prev {
  left: 0;
}

.slideshow-container .next {
  right: 0;
}

/* Info Section */
.info {
  text-align: center;
  padding: 20px;
}

.info p {
  margin-bottom: 20px;
}

/* Video Section */
.video {
  text-align: center; 
  padding: 20px;
  display: block;  
}

.video iframe {
  width: 100%;
  max-width: 560px;  
  display: block; 
  margin: 0 auto; 
}

.video .btn {
  display: inline-block; 
  padding: 10px 20px;
  background-color: #c800ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;  
}

.video .btn:hover {
  background-color: #780199;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .social-icons a img {
  width: 30px;
  margin: 0 35px;
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */
}

footer .social-icons a img:hover {
  transform: scale(1.2); /* Make the icon 20% larger on hover */
}

