/* Global Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #FFE4B5;
  color: #0c1446;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: #FFA500;
  padding: 20px 40px;
  color: white;
  position: relative;
}

.logo img.logo-gif {
  height: 40px;
  width: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Hamburger Styles */
.menu-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
}

.hamburger span:not(.menu-label) {
  width: 24px;
  height: 3px;
  background: #ff3f00;
  margin: 2px 0;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-label {
  font-size: 0.9rem;
  color: white;
  margin-top: 5px;
  font-weight: bold;
}


.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 30%;
  background-color: #FFA500;
  padding: 20px 40px;
  align-items: flex-end;
  gap: 10px;
  z-index: 10;
  text-align: right;
  
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff3f00;
}

.nav-links .btn {
  background-color: white;
  color: #FFA500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}

.nav-links .btn:hover {
  background-color: #ffedd1;
  color: #ff3f00;
}

/* Always show hamburger, toggle menu visibility */
.menu-toggle:checked + .hamburger + .nav-links {
  display: flex;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1584467735871-0d82a36a568b?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #FFA500;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff8ee;
}

/* Button Styling */
.btn {
  display: inline-block;
  background-color: #FFA500;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ff3f00;
}

/* Features Section */
.features {
  padding: 60px 40px;
  background-color: white;
  text-align: center;
  color: #0c1446;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature h3 {
  color: #FFA500;
  margin-bottom: 10px;
}

.feature p {
  color: #333;
}

.feature a {
  color: #1E90FF;
  text-decoration: none;
}

.feature a:hover {
  text-decoration: underline;
}

/* Login Grid */
.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.login-box {
  background: #f9f9f9;
  padding: 1.5rem;
  border: 0px solid #ccc;
  border-radius: 8px;
}

.login-box h3 {
  margin-bottom: 1rem;
}

.login-box input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
}

.login-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #0c1446;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.login-btn:hover {
  background-color: #0056b3;
}

/* Splash Image Styling */
.splash-wrapper {
  width: 100%;
  max-width: 100vw;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.splash-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Footer */
footer {
  background-color: #FFA500;
  color: white;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #FFE4B5;
}
