/* Base styles: Large screens (desktop, >900px) */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  /* Hide scrollbars but allow scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.hero-section {
  background: #000;
  color: #fff;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.hero-text-group {
  margin-left: 5vw;
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.hero-text-large {
  font-size: 3rem;
  font-weight: bold;
}
.hero-text-medium {
  font-size: 2rem;
  font-weight: 600;
}
.hero-text-small {
  font-size: 1.2rem;
  font-weight: 400;
}
.hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 90vh;
  max-width: 40vw;
  width: auto;
  height: auto;
}
.scroll-down-btn {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
  z-index: 10;
}
.scroll-down-btn:hover, .scroll-down-btn:focus {
  background: rgba(255,255,255,0.3);
  outline: none;
}
.hero-container {
  opacity: 0;
  transition: opacity 0.5s;
}
.hero-container.loaded {
  opacity: 1;
}

/* Medium screens (tablet, 600px - 900px) */
@media (max-width: 900px) and (min-width: 601px) {
  .hero-section {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero-text-group {
    max-width: 70vw;
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    margin-top: 6rem;
    padding-left: 1.5rem;
  }
  .hero-image {
    max-width: 60vw;
  }
}

/* Small screens (mobile, <=600px) */
@media (max-width: 600px) {
  .hero-section {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 110vh;
    height: auto;
    position: relative;
    padding-bottom: 2rem;
  }
  .hero-text-group {
    max-width: 90vw;
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    margin-top: 2rem;
    padding-left: 1.5rem;
    z-index: 1;
  }
  .hero-image {
    position: static;
    display: block;
    margin: 2rem auto 0 auto;
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
} 

.content-grid-section {
  background: #fff;
  color: #111;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} 

.menu-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(144, 140, 135, 0.4); /* #908C87 at 40% opacity */
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
}
.menu-btn:hover, .menu-btn:focus {
  background: rgba(144, 140, 135, 0.6);
}
.menu-line {
  width: 1.6rem;
  height: 0.18rem;
  background: #111;
  margin: 0.22rem 0;
  border-radius: 2px;
  display: block;
} 

.menu-bg {
  min-height: 100vh;
  min-height: 100svh;
  width: 100vw;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/avi-website-8fd89.firebasestorage.app/o/Menu%20Hero%20Image.png?alt=media&token=5ae5580a-8788-4d50-b7f8-4ad3a08ffde0');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  background-color: #000; /* fallback */
  position: relative;
}

@media (max-width: 900px) {
  .menu-bg {
    background-position: left top;
    background-size: cover;
  }
}
@media (max-width: 600px) {
  .menu-bg {
    background-position: left top;
    background-size: cover;
  }
} 

.menu-options {
  position: fixed;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  z-index: 1100;
}
.menu-link {
  background: rgba(0,0,0,0.0);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 1.2rem 3.5rem;
  border: none;
  border-radius: 3rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
  letter-spacing: 0.04em;
  outline: none;
}
.menu-link:hover, .menu-link:focus {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
@media (max-width: 900px) {
  .menu-options {
    right: 1vw;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .menu-options {
    right: 0.5vw;
    gap: 0.7rem;
  }
} 

.menu-hero-container {
  opacity: 0;
  transition: opacity 0.5s;
}
.menu-hero-container.loaded {
  opacity: 1;
} 