/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    line-height: 1.6;
  }
  
  /* NAVIGATION STYLES */
  nav {
    background-color: transparent;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  nav .name {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-align: left;
    flex-grow: 1;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;

  }
  
  nav.scrolled {
    background-color: black !important;
    color: white !important;
  }
  
  nav.scrolled a,
  nav.scrolled .name {
    color: white !important;
  }
  
  /* HEADER */
  header {
    position: relative;
    height: 100vh;
    background-image: url('media/homepage/IMG_8715.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 5px black;
  }
  
  header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
  }
  
  header h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    text-align: center;
    padding: 0 20px;
  }
  
  /* PAGE SECTIONS */
  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .new-things,
  .about-me,
  .contact,
  .media {
    background-color: #f4f4f4;
  }
  
  .about-me img,
  .media img,
  .media video {
    max-width: 100%;
    margin: 20px 0;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .media-buttons button {
    margin: 5px;
    padding: 10px 15px;
  }
  
  .media-item {
    display: none;
    margin-top: 20px;
  }
  
  .media-item.active {
    display: block;
  }
  
  /* July 4th special */
  .media-item[data-section="july-2025"] {
    background-color: #ffe6e6;
    border: 2px solid #cc0000;
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .media-item[data-section="july-2025"]:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(204, 0, 0, 0.5);
  }
  
  .media-item[data-section="july-2025"] img {
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-radius: 5px;
  }
  
  /* About Page */
  .about-me section {
    margin-bottom: 40px;
  }
  
  .about-me h3 {
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  /* Mobile Menu Styles */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: black;
    padding: 2rem;
    z-index: 1000;
  }

  .mobile-menu.show {
    display: flex;
  }
  
  
  .mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #444;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    nav .name {
      text-align: center;
      flex-grow: 1;
    }
  
    nav {
      justify-content: space-between;
    }
  }
  