/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Crimson Text', serif;
}
.irish-grover-regular {
  font-family: "Irish Grover", system-ui;
  font-weight: 400px;
  font-size: 20px;
  font-style: normal;
  color: palevioletred;
}
.irish-grover-regulare {
  font-family: "Irish Grover", system-ui;
  font-weight: 400px;
  font-size: 35px;
  font-style: normal;
  color: rgb(153, 1, 153);
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #1a1a1a;
  color: #f4f4f4;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  background-color: #1c1c1c;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid purple;
}

.navbar .logo {
  font-size: 32px;
  font-family: 'UnifrakturCook', cursive;
  color: purple;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.navbar nav ul li a:hover {
  color: purple;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('https://images.alphacoders.com/655/655516.jpg') no-repeat center center/cover;
  transition: background-image 1s ease-in-out;
}

.hero-content {
  z-index: 2;
  position: relative;
  padding: 20px;
  color: #fff;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 64px;
  font-family: 'UnifrakturCook', cursive;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
  text-transform: uppercase;
  text-shadow: 0px 0px 20px purple;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeIn 3s ease-out;
}

.cta-btn {
  background-color: purple;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  animation: slideIn 2s ease-out;
}

.cta-btn:hover {
  background-color: #660033;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
  
}

@keyframes slideIn {
  0% {
      opacity: 0;
      transform: translateX(-50%);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
  
}


/* About Section */
.section {
  padding: 80px 20px;
  background-color: #222;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer */
.footer {
  background-color: #1c1c1c;
  text-align: center;
  padding: 20px;
  color: #bbb;
  border-top: 2px solid #bb3366;
}

.footer p {
  margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #bb3366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #660033;
}
/* Carousel Section */
.carousel {
  padding: 100px 20px; /* Increased padding for a larger carousel */
  background-color: #222;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  max-width: 1200px; /* Optional: Set max-width for responsiveness */
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-images {
  display: flex;
  gap: 30px; /* Adjust this value to change the gap between images */
  transition: transform 0.5s ease;
}

.carousel-item {
  width: calc(33.33% - 30px); /* Subtract the gap value from the width */
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.carousel h2 {
  margin-bottom: 40px; /* More space between heading and carousel */
  font-size: 48px; /* Larger font size */
  font-family: 'UnifrakturCook', cursive;
  color: #fff;
  text-align: center;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-buttons button {
  background-color: #bb3366;
  color: #fff;
  padding: 10px 20px; /* Larger buttons */
  font-size: 18px; /* Larger button text */
  border: none;
  border-radius: 5px;
  margin: 0 15px; /* More space between buttons */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-buttons button:hover {
  background-color: #660033;
}

@media (max-width: 768px) {
  .carousel-item {
      width: 100%; /* Full width on smaller screens */
      height: 300px; /* Adjust height for smaller screens */
  }
}

#panel{
  align-content: center;
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  text-align: center;
  align-items: center;
  background-color: black;
  transition: all 1s ease-in;
}
#panel.slide-up {
  transform: translateY(-100%);
  background-color: red;
}
#panel.slide-down {
  transform: translateY(100%);
}