/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Lucida Sans", sans-serif;
    line-height: 1.6;
  }
  
  /* === NAVIGATION === */
.nav-logo {
      width: 120px;
      height: 120px;
      object-fit: contain;
	position: relative;
	left: -25px;
}  

nav {
    width: 100%;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 5px 9px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
  }
  nav a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  nav a:hover {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }
  
  nav a:active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
  
  }
  
  /* === GRID LAYOUT === */
  .grid-container {
    display: grid;
    grid-template-areas:
      'header'
      'menu'
      'main'
      'right'
      'footer';
    gap: 1rem;
    padding: 1rem;
    max-width: 1200px;
    margin: auto;
  }
  .item1 { grid-area: header; }
  .item2 { grid-area: menu; }
  .item3 { grid-area: main; }
  .item4 { grid-area: right; }
  .item5 { grid-area: footer; }
  
  /* === MENU SIDEBAR === */
  .item2 ul {
    list-style: none;
  }
  .item2 li {
    background: rgba(248, 248, 248, 1);
    color: rgb(65, 64, 64);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .item2 p {
    background: rgba(248, 248, 248, 1); 
    color: rgb(72, 71, 71);
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  
  }
  .item2 a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 9px 15px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  .item2 a:hover {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }
  .item2 a:active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
  }
  
  
  /* === MAIN FORM AREA === */
  .item3 h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  
  
  .item3 label {
    display: block;
    margin-bottom: 0.75rem;
  }
  .item3 input,
  .item3 select {
    width: 70%;
    padding: 0.7rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .item3 button {
    background-color: rgba(248, 248, 248, 1);
    color: rgb(82, 81, 81);
    padding: 0.55rem .9rem;
    font-size: .7rem;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .item3 button:enabled {
    cursor: pointer;
    background-color: rgba(248, 248, 248, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .item3 button:hover:enabled {
    background-color: rgba(248, 248, 248, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  /* === RIGHT PANEL === */
  .item4 {
    background: rgba(248, 248, 248, 1);
    color: rgb(45, 45, 45);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 16px;
  }
  .item4 h2 {
    margin-bottom: 0.5rem;
  }
  
  .raised-text.raised-text {
    color: #2a9d8f;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease-in-out;
  }
  .raised-text.raised-text:hover {
    color: #2a9d8f;
    text-decoration: underline;
    transform: translateY(-2px);
  }
  .raised-text.raised-text:active {
    color: #1b5e20;
    text-shadow: none;
    transform: translateY(1px);
  }
  /* === FOOTER === */
  .stickout {
    color: white;
    padding: 12px 20px;
    display: inline-block;
    background-color: #2a9d8f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  footer {
    background: rgba(248, 248, 248, 0.95);
    color: rgb(53, 52, 52);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
  }
  .footer-links a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  .footer-links a:hover {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }
  .footer-social a {
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 3px 6px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
    user-select: none;
  }
  .footer-social a:hover {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }
  
  /* === RESPONSIVE === */
  
@media (min-width: 768px) {
 .grid-container {
      	grid-template-areas:
        'header header'
        'menu main'
        'right main'
        'footer footer';
     	 grid-template-columns: 1fr 3fr;
	 }
  }
  
@media (min-width: 1024px) {
    .grid-container {
      grid-template-areas:
        'header header header'
        'menu main right'
        'footer footer footer';
      grid-template-columns: 1fr 2fr 1fr;
    }
  }
  
