/* style.css */

/* Background with orange + deep orange gradient */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: 
      linear-gradient(rgba(255,165,0,0.85), rgba(255,69,0,0.85)),
      url('../assets/bkgnd.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Main container */
  .container {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 95%;
    max-width: 800px;
  }
  
  /* Page title */
  h1 {
    margin-bottom: 30px;
    font-size: 26px;
    color: #333;
  }
  
  /* Card wrapper */
  .cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Individual card */
  .card {
    background-color: #fff8f0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
  }
  
  /* Card hover effect */
  .card:hover {
    transform: translateY(-10px); /* Slight upward movement */
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); /* Increased shadow for effect */
    background-color: #ffecd2; /* New background color when hovered */
  }
  
  /* Card headings and text */
  .card h2 {
    margin-bottom: 10px;
    color: #FF4500;
  }
  
  .card p {
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Buttons */
  .btn {
    background-color: #FF4500;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #cc3700;
  }
  
  /* Responsive layout for larger screens */
  @media (min-width: 768px) {
    .cards {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .card {
      width: 45%;
    }
  }
  