/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.navbar {
  display: flex;
  gap: 1rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Promo Slider */
.promo-slider {
  background: #f8a5c2;
  padding: 0.5rem;
  text-align: center;
  position: relative;
}

.promo-message {
  display: none;
  color: white;
  font-weight: bold;
}

.promo-message.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Image Slider */
.image-slider {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-header {
  text-align: center;
  margin-bottom: 1rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.slider-track-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slider-item {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}

.slider-item img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.slider-caption {
  margin-top: 0.5rem;
  font-weight: bold;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.control-button {
  padding: 0.5rem 1rem;
  background: #f8a5c2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.control-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Contact Section */
#contact {
  text-align: center;
  padding: 2rem;
  background: #f5f5f5;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  
  .navbar {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .slider-item {
    min-width: 100%;
  }
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(to right, #ffe0ec, #e0f7fa);
  color: #333;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.hero-btn {
  background-color: #f06292;
  color: white;
  padding: 12px 25px;
  font-size: 1em;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #ec407a;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/*===============================
=          login.css            =
===============================*/

body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffeaf0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #d72638;
}

input, select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #d72638;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #b81f2f;
}

.forgot-password {
  text-align: center;
  margin-top: 10px;
}


