/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,body {
    font-family: 'Inter', sans-serif;
    background-color: #E0F7FA; /* Light blue background */
    color: #212121;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .wrapper {
    flex: 1;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  .contact-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  /* Contact Section */
  .contact-section {
    padding: 120px 20px 80px; 
   /* background-image: url("../assets/pozadinaLogo.png"); */
    background-size: contain;
    background-position: center; /* Centriraj sliku */
    background-repeat: no-repeat;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-top: 40px;
   
  }
  
  .contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #00A4D9;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 18px;
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
  border-color: #00796B;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}
  .contact-form textarea {
    resize: vertical;
  }
  .submit-btn {
    background-color: #00A4D9;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
  }
  
  .submit-btn:hover {
    background-color: #026384;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 77, 64, 0.4);
  }


    
  /* Footer */
  .footer {
    background-color: #00796B;
    color: white;
    padding: 40px 20px;
    text-align: center;

  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: transform 0.2s, color 0.3s;
   
  }
  
  .social-icons a:hover {
    color: #E0F7FA;
    transform: scale(1.2);
  }
  
  .footer p {
    margin-top: 20px;
    font-size: 14px;
  }
  /* Responsive Design */
@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 28px;
  }

  .submit-btn {
    font-size: 16px;
  }
}