/* contact.css */

body {
    margin: 0;
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  nav .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  nav .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: 0.4s;
  }
  
  nav .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  nav .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  nav .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  @media screen and (max-width: 768px) {
    nav ul {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #000;
      flex-direction: column;
      width: 200px;
      padding: 20px;
      display: none;
    }
  
    nav ul.active {
      display: flex;
    }
  
    nav .menu-toggle {
      display: flex;
    }
  }
  
  .contact-container {
    padding-top: 100px;
    padding: 50px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-container h2 {
    font-size: 2.5em;
    color: #f0c000;
    margin-bottom: 30px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  label {
    text-align: left;
    font-weight: bold;
  }
  
  input,
  textarea {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 100%;
  }
  
  button {
    background-color: #f0c000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #111;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #d4a800;
  }
  
  .instagram-section {
    margin-top: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  
  .instagram-section h3 {
    margin-bottom: 10px;
    font-size: 1.8em;
  }
  
  .instagram-section p {
    margin-bottom: 20px;
  }
  
  .instagram-section a {
    display: inline-block;
    background-color: #fff;
    color: #cc2366;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .instagram-section a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #fff;
  }
  
  @media screen and (max-width: 480px) {
    .contact-container h2 {
      font-size: 2em;
    }
  
    .instagram-section h3 {
      font-size: 1.5em;
    }
  }
  