/* index.css - Ultra Attractive Premium Theme for GSRTC */

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f8f9fa;
    margin: 0;
    padding: 0;
    text-align: center;
    cursor: pointer;
    user-select: none;

}
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #359bd2; /* Green background */
  color: white; /* White text */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #00eeff; /* Darker green on hover */
}


h1 {
    font-size: 3.2rem;
    color: #00f2fe;
    margin-bottom: 2.5rem;
    letter-spacing: 1.2px;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 242, 254, 0.9);
    }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1.3rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4),
                -4px -4px 12px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.btn-primary {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.btn-success {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #000;
}

.btn-success:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #38f9d7, #43e97b);
}

footer {
    
    margin-top: 4rem;
    font-size: 0.95rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #adb5bd;
}

footer p {
    margin-bottom: 0.4rem;
}

footer a {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #4facfe;
    text-decoration: underline;
}

/* Default: Dark Theme (already applied in your current CSS) */

body.light-theme {
    background: linear-gradient(135deg, #f0f2f5, #dbe4f0);
    color: #212529;
}

body.light-theme .container {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    color: #212529;
}

body.light-theme h1 {
    color: #0077be;
    text-shadow: none;
}

body.light-theme .btn-primary {
    background: linear-gradient(to right, #007bff, #3399ff);
    color: #fff;
}

body.light-theme .btn-success {
    background: linear-gradient(to right, #28a745, #20c997);
    color: #fff;
}

body.light-theme .btn-outline-light {
    border-color: #0077be;
    color: #0077be;
}

body.light-theme footer {
    color: #212529;
    border-top: 1px solid #ccc;
}

body.light-theme footer a {
    color: #0077be;
}


.btn-lg:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* new */

/* Gradient Navbar */
.navbar-custom {
  background: linear-gradient(90deg, #b2adba, #074aad);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Navbar brand style */
.navbar-brand {
  color: rgb(29, 29, 143) !important; /* Force the color */
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Hover effect for links */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Theme toggle button */
#themeToggle {
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}
#themeToggle:hover {
  background: #fff;
  color: #0d6efd;
}

/* Mobile menu animation */
.navbar-collapse {
  transition: max-height 0.4s ease-in-out;
}
