/* About Section Styles */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  margin-left: 16px;
  z-index: 20;
}



nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  font-family: 'Pacifico', cursive;
  color: #000000;
  text-decoration: none;
  font-size: 1.4rem;
}





@keyframes float-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #eee;
  padding: 1rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  gap: 10px;
}

input, select, button {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #28a745;
  color: white;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

button:hover {
  background-color: #218838;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(215, 215, 215, 0.8);
  backdrop-filter: blur(2px);
  z-index: 10;
}


header h1 {
  margin: 0;
  padding: 10px;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}

header h1:hover {
  transform: scale(1.05);
}

.site-footer {
      background: #23272f;
      color: #fff;
      font-family: 'Segoe UI', Arial, sans-serif;
      padding: 40px 0 0 0;
      margin-top: 40px;
    }
    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
.footer-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  flex: 2;
  min-width: 0;
  justify-content: space-between;
}
    .footer-col {
      min-width: 150px;
      flex: 1 1 150px;
    }
    .footer-col h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: #ffd700;
      letter-spacing: 0.5px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 8px;
    }
    .footer-col ul li a {
      color: #d1d1d1;
      text-decoration: none;
      font-size: 0.98rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover {
      color: #ffd700;
    }
    .footer-connect {
      flex: 1 1 180px;
      min-width: 180px;
      margin-top: 0;
      text-align: left;
    }
    .footer-connect h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: #ffd700;
    }
    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 6px;
    }
    .footer-social-icon {
      color: #fff;
      font-size: 1.3rem;
      background: #33384a;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .footer-social-icon:hover {
      background: #ffd700;
      color: #23272f;
    }
    .footer-bottom {
      border-top: 1px solid #44495a;
      margin-top: 32px;
      padding: 18px 32px 18px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-payments img {
      height: 32px;
      margin-right: 10px;
      vertical-align: middle;
      filter: grayscale(0.2) brightness(0.95);
      transition: filter 0.2s;
    }
    .footer-payments img:last-child {
      margin-right: 0;
    }
    .footer-payments img:hover {
      filter: none;
    }
    .footer-copyright {
      color: #bdbdbd;
      font-size: 0.97rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }
    .footer-links a {
      color: #ffd700;
      text-decoration: none;
      margin: 0 3px;
      font-size: 0.97rem;
    }
    .footer-links a:hover {
      text-decoration: underline;
      color: #fff;
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .site-footer {
        width:auto;
      }
      
    }
    @media (max-width: 600px) {
      .footer-main {
        padding: 0 8px;
      }
      .footer-columns {
        flex-direction: column;
        gap: 10px;
      }
      .footer-col {
        min-width: 0;
        margin-bottom: 18px;
      }
      .footer-connect {
        min-width: 0;
        margin-top: 10px;
        text-align: left;
      }
      .footer-bottom {
        padding: 14px 8px;
        font-size: 0.95rem;
      }
      .footer-payments img {
        height: 26px;
        margin-right: 6px;
      }
      .footer-social-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
      }
      .footer-social {
        justify-content: center;
      }
      nav {
        position: relative;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        border-radius: 8px;
        flex-direction: column;
        min-width: 180px;
        padding: 12px 0;
        z-index: 15;
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li {
        display: block;
        margin: 0;
        padding: 8px 24px;
        border-bottom: 1px solid #eee;
      }
      .nav-links li:last-child {
        border-bottom: none;
      }
      .nav-links li a {
        font-size: 1.2rem;
        color: #005bea;
        font-family: 'Pacifico', cursive;
      }
      .nav-toggle {
        display: block;
      }
      .footer-copyright {
        justify-content: center;
      }
      .home-title span {
        font-size: 4rem;
      }
      .home-title {
        font-size: 4rem;
        margin-top: 2rem;
      }
      .floating-images {
        min-height: 0;
        margin: 0;
      }

    }

    @media (max-width: 400px) {
      .footer-col h3, .footer-connect h3 {
        font-size: 1rem;
      }
      .footer-bottom {
        font-size: 0.92rem;
      }
    }

.user-welcome {
  font-weight: 600;
  color: #007bff;
  margin-right: 12px;
}

.logout-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.logout-btn:hover {
  background-color: #b02a37;
}


    



