/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;

  }
  
  body {
   background-image: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(255, 255, 255));
  }
  .hero{
    background-image: url(medugorje.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 100vh;
    padding: none;
    z-index: 0;
    margin-top: -50px;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: rgba(94, 94, 94, 0.4); /* semi-transparent */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    position: relative;
    top: 0;
    z-index: 1000;
  }
  .logo img {
  width: 50px; ;
  display: inline-block;
  width: auto;
  height: auto;
  object-fit: contain;
}
  
  .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.7px;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s;
    margin: 0 12px;
    padding: 0px;
    vertical-align: middle;
    display: inline-block;
  }
  
  .nav-links a:hover {
     color: #4e4e4e; 
     transition: color 0.3s ease;
  }
  
  .icons a {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
  }
  .fa-whatsapp{
    color: rgb(255, 255, 255);
  }
  .fa-facebook{
    color: rgb(255, 255, 255);
  }
  .fa-instagram{
    color: rgb(255, 255, 255);
  }
  .fa-whatsapp:hover{
    color: rgb(72, 255, 72);
  }
  .fa-facebook:hover{
    color: rgb(51, 51, 253);
  }
  .fa-instagram:hover{
    color: rgb(255, 88, 116);
  }
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0px;
  }
  h1{
    border-bottom-style: solid;
    border-color: #000000;
    border-width: 1.5px;
    padding-left: 20px;
    color: #ac853d;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(104, 104, 104, 0.123); /* semi-transparent */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding:1rem;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .fas{
    color: #fff;
  }
  
  .mobile-menu a {
    color: #ffffff;
    margin: 1rem 1rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.7px;
    font-size: 1.2rem;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  /* Hero Section */
  .hero {
    /*background: url('images/bg.jpg') center/cover no-repeat;*/
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    color: #ffffff;
    font-size:30px;
  }
  
  .hero .overlay {
    background: rgba(59, 59, 59, 0.644);
    padding: 2rem;
    border-radius: 10px;
    
  }
  .hero .logo1 img{
    width: 50vw;        /* responsive to viewport width */
    max-width: 500px;   /* limit max size */
    height: auto;
    margin-bottom: 20px;
}
  /* Sections */
  section {
    padding: 0;
  }
  
  .container {
    max-width: 1100px;
    margin-top: 30px;
    padding: 1rem;
    margin: auto;

  }
  
  /* About Us */
  .history-text {
    margin-bottom: 10rem;
    margin-top: 3rem;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1.5px;
    border-style: solid;
    border-width: 2px;
    border-color: #ac853d;
    border-radius: 15px;
    margin: 5px 5px 45px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    text-align: center;
    img{width: 3rem;}
  }
  
  .icon-box {
    padding: 0rem;
    font-size: 1.5rem;
    border-radius: 8px;
    margin-bottom: 0;  
  }
  /* Map */
  .map iframe {
    width: 100%;
    height: 300px;
    border-color: #ac853d;
    border-width: 2px;
    margin-top: 50px;
  }
  
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 50px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Contact */
  #texty{
    padding-top: 2.5rem;
  }

    
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  
  }
  
  .contact-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #f1e28d;
    color: #000;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 15px;
  }
  
  .footer-links a {
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hamburger {
      display: none;
    }
  
    .mobile-menu {
      display: none !important;
    }
  }
  
  @media (max-width: 767px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  }
  