/* RESET / BASIC STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  img {
    max-width: 100%;
    height: auto;
  }




/* NAVBAR CONTAINER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align content to the right */
  background: rgba(3, 43, 34, 0.4); /* Dark green w/ transparency */
  padding: 1rem 2rem;
}

/* Burger Menu Icon - Always Visible on Mobile */
.burger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Navigation Links - Hidden by Default on Mobile */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none; 
  color: #f2f2f2;               
  font-size: 18px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #0f3f3c;
}

/* LANGUAGE DROPDOWN */
.language-dropdown {
  position: relative;
}

.language-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(15, 63, 60, 0.9);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border-radius: 4px;
  min-width: 120px;
  z-index: 999;
}

.language-dropdown.open .language-menu {
  display: block;
}

.language-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #f2f2f2;
  text-transform: uppercase;
}

.language-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #0f3f3c;
}

/* SMALLER, READABLE RESERVE BUTTON */
.btn-reserve-nav {
  background: #0f3f3c;       
  color: #f2f2f2;            
  padding: 0.5rem 1rem;      
  font-size: 0.85rem;        
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s;
}

.btn-reserve-nav:hover {
  background: #f2f2f2;
  color: #032b22;            
}

/* RESPONSIVE CHANGES */
@media (max-width: 1024px) {
  .burger {
    display: block;
  }
  
  #navbar {
    justify-content: flex-start;
    /* When not in the burger menu, hide or make fully transparent */
    background: transparent; /* Remove semi-transparency */
    padding: 0; /* Remove padding */
    height: 0; /* Collapse height */
    overflow: hidden; /* Hide any content that might overflow */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0; 
    background: rgba(3, 43, 34, 0.2); 
    width: 100vw; 
    height: 100vh; 
    padding: 1rem;
    z-index: 1000;
    box-shadow: none;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    align-items: center; 
    justify-content: center; 
  }

  /* Open Menu */
  .nav-links.open {
    display: flex;
  }

  /* Menu Items */
  .nav-links li {
    margin: 0.3rem 0;
    width: 100%; 
    text-align: center; 
  }

  .nav-links a {
    display: block;
    padding: 0.6rem 0;
    background: none;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #17ccc3;
  }

  /* Reserve Now Button in mobile view */
  .nav-links .btn-reserve-nav {
    background: rgba(15, 63, 60, 0.8);
    color: #f2f2f2;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    margin-top: 0.5rem;
  }

  .nav-links .btn-reserve-nav:hover {
    background: #f2f2f2;
    color: #032b22;
  }

  /* Language Menu Customization for Mobile */
  .language-dropdown {
    order: -1; 
  }

  .language-menu {
    position: static;
    display: none;
    background: rgba(15, 63, 60, 0.3);
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .language-dropdown.open .language-menu {
    display: block;
  }

  .language-menu li {
    margin: 0.3rem 0;
  }

  .language-menu li a {
    padding: 0.5rem 1rem;
    color: #f2f2f2;
    text-transform: uppercase;
    display: inline-block;
    width: auto;
  }

  .language-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #032b22;
  }
}






@font-face {
  font-family: 'MontserratMedium';
  src: url('./fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MontserratBold';
  src: url('./fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}




























.contact-section {
  background-color: #0B3D36;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 100px;
}

.contact-section h2 {
  font-size: 2.9em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contact-section h3 {
  font-size: 1.4em;
  font-family: 'MontserratMedium', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin: 30px 0;
}


.contact-section p {
  font-size: 1.4em;
  font-family: 'MontserratMedium', sans-serif;
  margin: 30px 0;
}

.button  {
  display: inline-block;
  background: #f2f2f2;
  color: #0f3f3c;
  font-family: 'MontserratBold', sans-serif;
  font-size: 20px;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin: px 0;
}

.button:hover {
  background: #f2f2f2; 
  color: #0f3f3c; 
  transform: scale(1.05); 
}

.contact-box {
  background-color: white;
  font-size: 20px;
  color: black;
  padding: 40px; /* Increased padding to make the box bigger */
  border-radius: 10px;
  display: inline-block;
  text-align: center;
}

.contact-box p {
  margin: 10px 0;
}

.contact-box img {
  vertical-align: middle;
  margin-right: 10px;
}



/* Mobile styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 20px; /* Reduced padding for mobile */
  }

  .contact-section h2 {
    font-size: 2em; /* Smaller font size for mobile */
  }

  .contact-section h3, .contact-section p {
    font-size: 1.2em; /* Smaller font size for mobile */
    margin: 20px 0; /* Reduced margin for mobile */
  }

  .button {
    font-size: 16px; /* Smaller font size for mobile */
    padding: 0.5rem 1.5rem; /* Adjusted padding for mobile */
    width: 80%; /* Make button wider for touch devices */
    max-width: 300px; /* But not too wide */
    margin: 15px auto; /* Center the button and adjust margin */
  }

  .contact-box {
    width: 90%; /* Make box wider for mobile */
    padding: 20px; /* Reduced padding for mobile */
  }

  /* Adjusting the font size for paragraphs inside the contact box for mobile */
  .contact-box p {
    font-size: 20px; /* Smaller font size for mobile */
  }
}




  
/* Footer Section */
#footer {
  background: #032b22; /* Dark green background */
  color: #fff; /* White text color */
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* Spread items across the footer */
  align-items: flex-start;
  max-width: 1400px; /* Increased container width for more spacing */
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative; /* Needed for absolute positioning of ::after */
}

.footer-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem; /* Match the padding-left */
  right: 1rem; /* Match the padding-right */
  height: 2px; /* Match the border thickness */
  background: #f2f2f2; /* Match the border color */
}

.footer-logo {
  flex: 1;
  text-align: left; /* Align logo to the left */
}

.penava-logo {
  width: 400px; /* Increased logo size */
  height: auto;
}

.footer-center {
  flex: 1;
  text-align: center; /* Center align the content */
}

.footer-right {
  flex: 1;
  text-align: center; /* Align to the right */
}

.footer-center p,
.footer-right p {
  margin: 0.5rem 0; /* Space between lines */
  font-size: 25px; /* Larger font size */
}

.footer-center strong,
.footer-right strong {
  font-family: 'MontserratBold', sans-serif;
  font-size: 25px; /* Larger header font size */
  white-space: nowrap; /* Prevent text wrapping */
}

.whatsapp-icon {
  width: 30px; /* Restored to original size */
  height: 30px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.spacer {
  margin: 1rem 0; /* Space between 'OIB: //' and next text */
}

.spacer-small {
  margin: 1rem 0; /* Increased spacing for Office Hours */
}

.footer-bottom {
  font-size: 14px;
  margin-top: 1rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-bottom p:last-child {
  font-style: italic; /* Italicize the "Powered by" text */
}

/* Footer Links */
.footer-link {
  color: #f2f2f2; /* Accent color for links */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Make the links stand out */
}

.footer-link:hover {
  text-decoration: underline; /* Add underline on hover */
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  #footer {
    padding: 1rem 0; /* Reduce padding for smaller screens */
  }

  .footer-container {
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    gap: 1rem; /* Reduce gap between sections */
  }

  .footer-container::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 1rem; /* Match the padding-left */
    right: 1rem; /* Match the padding-right */
    height: 1px; /* Match the border thickness */
    background: #f2f2f2; /* Match the border color */
  }

  .footer-logo {
    width: 100%; /* Full width for the logo */
    text-align: center; /* Center align the logo */
    margin-bottom: 1rem; /* Add space below logo */
  }

  .penava-logo {
    width: 80%; /* Responsive width */
    max-width: 400px; /* Maximum width */
    height: auto;
  }

  .footer-center,
  .footer-right {
    width: 100%; /* Full width for better reading on mobile */
    text-align: center;
  }

  .footer-center p,
  .footer-right p {
    margin: 0.5rem 0;
    font-size: 18px; /* Smaller font size for mobile */
  }

  .footer-center strong,
  .footer-right strong {
    font-size: 22px; /* Adjust header font size for mobile */
    white-space: normal; /* Allow text wrapping */
  }

  .whatsapp-icon {
    width: 20px; /* Smaller icon for mobile */
    height: 20px;
    vertical-align: middle;
    margin-right: 0.3rem;
  }

  .spacer,
  .spacer-small {
    margin: 0.5rem 0; /* Reduce spacing for mobile */
  }

  .footer-bottom {
    font-size: 12px; /* Smaller text for mobile */
    margin-top: 0.5rem;
  }

  .footer-bottom p {
    margin: 0.3rem 0;
  }
}


  
  /* RESPONSIVE MEDIA QUERIES */
  @media (max-width: 768px) {
    #hero {
      height: 60vh; /* Adjust if you want a smaller hero on mobile */
    }
    .hero-logo {
      width: 200px; /* Smaller logo on mobile if needed */
    }
    #intro .intro-content, 
    #intro .intro-image {
      flex: 100%;
    }
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
  }
  



  