/* Tropical Vibe Restaurant - Simple CSS */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: #036F6F;
  color: white;
}

.btn-primary:hover {
  background: #024d4d;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #036F6F;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #036F6F;
  cursor: pointer;
  margin: 0;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #036F6F;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
}

.hidden {
  display: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
  

}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 100px;
  opacity: 1;
  font-style: italic;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-label {
  color: #036F6F;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin: 20px 0;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #036F6F;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(3, 111, 111, 0.3);
}

.years-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.years-text {
  font-size: 0.9rem;
  text-align: center;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  color: #666;
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.feature h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

/* Menu Section */
.menu-featured {
  margin-bottom: 60px;
}

.menu-featured img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.menu-category {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.menu-category h3 {
  color: #036F6F;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.menu-item {
  /*display: flex;*/
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.menu-info h4 {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-info p {
  color: #666;
  font-size: 0.9rem;
}

.menu-price {
  color: #036F6F;
  font-weight: 600;
  /*font-size: 1.1rem;*/
  
  font-size: 1.2rem;
  padding-top:20px;
}

.badge {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.badge {
  background: rgba(3, 111, 111, 0.1);
  color: #036F6F;
}

.badge.special {
  background: rgba(255, 193, 7, 0.2);
  color: #b8860b;
}

.badge.signature {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.chef-special {
  background: rgba(3, 111, 111, 0.05);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.chef-special h3 {
  margin-bottom: 15px;
}

.chef-special p {
  color: #666;
  margin-bottom: 20px;
}

.chef-price {
  color: #036F6F;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Location Section */
.location {
  background: #f8f9fa;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(3, 111, 111, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/map-hain-sa-pulo.jpg');
}

.map-content h3 {
  margin: 15px 0 10px;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.directions h3 {
  margin-bottom: 20px;
}

.direction {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.direction-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.direction h4 {
  margin-bottom: 8px;
}

.direction p {
  color: #666;
  font-size: 0.9rem;
}

.additional-info {
  background: rgba(3, 111, 111, 0.05);
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}

.additional-info h4 {
  margin-bottom: 15px;
}

.additional-info ul {
  list-style: none;
}

.additional-info li {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.reservation-form {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #036F6F;
  box-shadow: 0 0 0 3px rgba(3, 111, 111, 0.1);
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 20px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.why-choose,
.quick-contact {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
}

.why-choose h3,
.quick-contact h3 {
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.quick-contact {
  background: #036F6F;
  color: white;
}

.quick-contact h3 {
  color: white;
}

.quick-contact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.quick-contact .note {
  font-size: 0.9rem;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 15px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #036F6F;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #036F6F;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #036F6F;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #333;
  padding-top: 40px;
  margin-bottom: 30px;
}

.hours h4,
.newsletter h4 {
  color: white;
  margin-bottom: 15px;
}

.hours p,
.newsletter p {
  color: #ccc;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #333;
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 30px;
}

.footer-copyright p {
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    min-width: 200px;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
  
  .years-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }
  
  .years-number {
    font-size: 1.5rem;
  }
  
  .years-text {
    font-size: 0.8rem;
  }
  
  .hero-content {
    /*margin-bottom: 200px;*/
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .reservation-form {
    padding: 25px;
  }
  
  .menu-category {
    padding: 20px;
  }
  
  .years-badge {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }
  
  .years-number {
    font-size: 1.2rem;
  }
  
  .years-text {
    font-size: 0.7rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading and transition effects */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form validation states */
.form-group input.error,
.form-group select.error {
  border-color: #dc3545;
}

.form-group input.success,
.form-group select.success {
  border-color: #28a745;
}



/*Custom*/


.contact-icon {
  font-size: 32px;
  color: #036F6F;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links {
  display: flex;
  justify-content: left;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #037d7d;
  transform: scale(1.1);
}


#audio-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.audio-btn {
  background-color: #012d0b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.audio-btn:hover {
  background-color: #024d14;
}



.logo img {
  width: 80px;       /* Adjust size as needed */
  height: auto;
  display: block;
}

.logo {
  margin: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}



.fw-italic{
    font-style: italic !important;
}




.menu-masonry {
  column-count: 3; /* number of columns */
  column-gap: 20px; /* space between columns */
/*  padding-top: 50px;*/
}

.menu-category {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: inline-block; /* important for masonry layout */
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .menu-masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .menu-masonry {
    column-count: 1;
  }
}



/*For Pet Policy*/


/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px; /* Prevent image from touching screen edges */
  box-sizing: border-box;
}

/* Popup container */
.popup-image-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
  box-sizing: border-box;
}

/* Popup image */
.popup-image {
  width: 100%;
  height: auto;
  max-height: 90vh;       /* Keeps image within viewport height */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

/* Close button */
.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  border: none;
  background: #036F6F;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 992px) {
  .popup-image-box {
    max-width: 700px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .popup-image-box {
    max-width: 600px;
  }
  .popup-close {
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .popup-overlay {
    padding: 10px;
  }

  .popup-image-box {
    max-width: 100%;
    width: 100%;
  }

  .popup-image {
    border-radius: 8px;
    max-height: 85vh;
  }

  .popup-close {
    top: 5px;
    right: 5px;
    background: rgba(3, 111, 111, 0.9);
  }
}



/*For Pet Policy*/















/*For Gallery*/

.gallery-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
}

/* Scrollable container */
.gallery-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Responsive thumbnail sizing */
.gallery-scroll img {
  flex: 1 0 auto;
  width: calc((100% - (var(--gap, 15px) * 5)) / var(--visible, 4));
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Scroll buttons */
/*.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.3s;
}

.scroll-btn:hover {
  background-color: rgba(0,0,0,0.8);
}

.scroll-btn.left {
  left: 5px;
}
.scroll-btn.right {
  right: 5px;
}*/


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 45px;              /* Equal width and height for perfect circle */
  height: 45px;
  border-radius: 50%;       /* Perfect circle */
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: rgba(0,0,0,0.9);
  transform: translateY(-50%) scale(1.1); /* subtle zoom effect */
}

.scroll-btn.left {
  left: 10px;
}
.scroll-btn.right {
  right: 10px;
}


/* Popup Lightbox */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.popup-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
}

.close {
  position: absolute;
  top: 25px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-scroll img {
    width: calc((100% - (var(--gap, 15px) * 3)) / 3);
  }
}
@media (max-width: 600px) {
  .gallery-scroll img {
    width: calc((100% - (var(--gap, 10px) * 2)) / 2);
  }
  .scroll-btn {
    display: none; /* Swipe instead */
  }
}

/*For Gallery*/



/*For Our Menu (Image)*/

.menu-featured {
  position: relative;
  width: 100%;
  max-width: 800px; /* adjust as needed */
  height: 300px; /* adjust as needed */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.menu-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.menu-featured img.active {
  opacity: 1;
}


/*For Our Menu (Image)*/










.hero-social {
  margin-top: 25px;
  display: flex;
  gap: 30px; /* spacing between icons */
  justify-content: center;
}

.hero-social .social-link {
  color: white; /* default white */
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-social .social-link:hover {
  color: #036F6F; /* hover color */
  transform: scale(1.1);
}

/* --- Tablets --- */
@media (max-width: 992px) {
  .hero-social {
    gap: 25px;
  }

  .hero-social .social-link {
    font-size: 1.6rem;
  }
}

/* --- Mobile phones --- */
@media (max-width: 600px) {
  .hero-social {
    margin-top: 20px;
    gap: 18px;
  }

  .hero-social .social-link {
    font-size: 1.4rem;
    color: white; /* always white on small screens */
  }

  .hero-social .social-link:hover {
    color: #036F6F; /* still change color on hover/tap */
  }
}

/* --- Extra small devices (e.g. small phones) --- */
@media (max-width: 400px) {
  .hero-social {
    gap: 15px;
  }

  .hero-social .social-link {
    font-size: 1.2rem;
  }
}






/*Menu Download*/
.menu-download {
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.menu-download > h3 {
  background-color: #036F6F;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  width: 30%;
  margin: 0 auto;
}

/* Tablet (iPad) */
@media (max-width: 1024px) {
  .menu-download > h3 {
    width: 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-download > h3 {
    width: 100%;
  }
}


/*EOF Menu Download*/
