/* Base styling */
body {
    height: 100vh;
    margin: 0;
    background: url('desktop-cover.jpeg') no-repeat center center/cover;
    font-family: 'Questrial', Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .nav-left .logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 2em;
    color: black;
  }
  
  .nav-right .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-right .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 1em;
    transition: color 0.3s;
  }
  
  .nav-right .nav-links li a:hover {
    color: #0056b3;
  }
  
  /* Main content styling */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 10% 0; /* extra top padding to avoid navbar overlap */
  }
  
  /* Container styling */
  .container1 {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
  }
  
  /* Headings */
  h1 {
    font-size: 5em;
    margin-bottom: 20px;
    color: black;
  }
  
  h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: black;
  }
  
  /* Button styling */
  .btn {
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  .btn:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  
  /* Contact info styling with fade-in effect */
  .contact-info {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin: 20px 10% 0;
  }
  
  .contact-info.visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Utility font classes */
  .permanent-marker-regular {
    font-family: 'Permanent Marker', cursive;
    font-weight: 300;
    font-style: normal;
  }
  
  .questrial-regular {
    font-family: 'Questrial', sans-serif;
    font-weight: 300;
    font-style: normal;
  }

/* Contact Page Specific Styling */
.contact-page {
    padding: 100px 10% 0;
    color: black; /* Adjust text color as needed */
  }
  
  .contact-page h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .contact-page p {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .contact-details p {
    margin: 5px 0;
  }
  
  /* Contact Form Styling */
  .contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
  }
  
  .contact-form label {
    font-size: 1em;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }
  
  .contact-form button {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  .contact-form button:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  

  /* Contact Page Specific Styling */
.contact-page {
    padding: 100px 10% 0;
    color: black; /* Adjust text color as needed */
  }
  
  .contact-page h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .contact-page p {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .contact-details p {
    margin: 5px 0;
  }
  
  /* Form Wrapper with Background Layer */
  .form-wrapper {
    background: rgba(255, 255, 255, 0.9); /* White background with slight transparency */
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  /* Contact Form Styling */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-form label {
    font-size: 1em;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }
  
  .contact-form button {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  .contact-form button:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  
  /* Optional: Highlight active nav link */
  .nav-links li a.active {
    font-weight: bold;
    text-decoration: underline;
  }
  
  /* Optional: Highlight active nav link */
  .nav-links li a.active {
    font-weight: bold;
    text-decoration: underline;
  }

  /* Optional: Highlight active nav link */
.nav-links li a.active {
    font-weight: bold;
    text-decoration: underline;
  }
  