@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  line-height: 1.6;
  /* background-color: rgb(216 216 216) !important; */
    background-image: linear-gradient(288deg, #ff601f5e, #000000b3), url(../img/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section {
  min-height: 100vh;
  /* background: #FFF; */
}

.hero-content {
  transform: scale(0.85);
  animation: zoom 1.5s ease forwards;
}

@keyframes zoom {
  0% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

.hero-section::after {
  content: '';
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(288deg, #ff601f5e, #000000b3), url(../img/background.jpg); */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}


.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 5px #000000;
}

.description {
  font-size: 1.1rem;
  color: rgb(255 255 255);
  margin-bottom: 2rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
  color: white;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.download-icon {
  margin-right: 0.5rem;
}

.cta{
  /* background-image: linear-gradient(288deg, #ff601f5e, #000000b3), url(../img/background.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
}

.cta p{
  font-size: 18px;
  color: #ffffff;
}







/* Admin Panel Styles */
.admin-form {
  max-width: 400px;
  width: 100%;
  margin-top: 100px;
  background-color: #192f3d;
  padding: 30px;
  border-radius: 14px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.dashboard-card {
  background: #192f3d;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: left;
}

.dashboard-card h3 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #6366f1;
}

.form-group input[type="file"] {
  padding: 0.5rem;
}

.error-message {
  background: rgb(239 68 68 / 68%);
  border: 1px solid rgb(239 68 68 / 87%);
  color: #fff7f7;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.success-message {
  background: rgb(34 197 94 / 72%);
  border: 1px solid rgb(34 197 94);
  color: #ffffff;
  padding: 0.75rem 30px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  max-width: fit-content;
  margin-left: auto;
}

.warning {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.manual-info {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.manual-info p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.upload-btn,
.password-btn,
.login-btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
}

.admin-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 890px) {
  .title {
      font-size: 42px;
    }
}
@media (max-width: 768px) {
  .container{
    max-width: 95% !important;
  }

  .hero-section img.hero-banner{
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .content-wrapper {
    padding: 2rem 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .logo {
    max-width: 120px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}