/*
 Theme Name: Fenuggets Child
 Template: katen
*/

  body {
    margin: 0;
  }
  /* Container for layout consistency */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header styles */
  .site-header {
    background: #E2E9FA;
    border-bottom: 1px solid #ddd;
    padding: 35px 0;
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-title {
    font-size: 2rem;
    margin: 0;
    color: #333;
    font-style: italic;
  }

  /* Ribbon styles */
  .ribbon {
    background: #6389E1; /* Adjust the background color as needed */
    padding: 10px 0;
  }

  .ribbon .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Left-side ribbon menu */
  .ribbon-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .ribbon-menu li {
    margin: 0 15px;
  }

  .ribbon-menu li a {
    color: #fff; /* Set link text to white */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
  }

  .ribbon-menu li a:hover {
    color: #e0e0e0;
  }

  /* Right-side authentication menu */
  .auth-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .auth-menu li {
    margin-left: 15px;
  }

  /* Enhanced Login Button (Outlined, Pill-Shaped) */
  .auth-menu .login-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 50px; /* Makes it pill-shaped */
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  }

  .auth-menu .login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Enhanced Register Button (Filled, Pill-Shaped) */
  .auth-menu .register-btn {
    display: inline-block;
    color: #6389E1; /* Uses the ribbon background color for contrast */
    background: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 50px; /* Pill shape */
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .auth-menu .register-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }