body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  background-image: url('./images/home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #222;
}

header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header h1 {
  font-size: 4.4em;
  margin: 0;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  animation: fadeInDown 1.5s ease;
}

header p {
  font-size: 1.8em;
  margin-top: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-style: italic;
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  background: linear-gradient(90deg, #1e1e1e, #333);
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.navbar:hover {
  background: linear-gradient(90deg, #000, #444);
}

.navbar a {
  color: #f4f4f4;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: width 0.3s ease-in-out;
}

.navbar a:hover::before {
  width: 100%;
}

.navbar a:hover {
  color: #000;
  background: #ffb703;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar a:active {
  transform: translateY(0);
  box-shadow: none;
}

.content {
  padding: 40px;
  max-width: 1200px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideIn 1.5s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background: linear-gradient(to right, #333, #111);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
  font-size: 1.4em;
  position: relative;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

footer p {
  margin: 0;
  font-size: 0.95em;
}

.gallery-section {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.gallery-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.gallery-section p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 15px;
}

.carousel {
  position: relative;
  display: inline-block;
  max-width: 600px;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #feb47b, #ff7e5f);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn:active {
  transform: scale(0.95);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}
