@charset "utf-8";

/* Common Styles */
.sectionInner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 5rem 2rem;
}

.sectionTitle {
  font-size: clamp(1.875rem, 1.6rem + 1.375vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.sectionTitle:not(.no-underline)::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #FF7A00;
}

.primaryButton {
  display: inline-block;
  background-color: #FF7A00;
  color: #fbfbfb;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.primaryButton:hover {
  background-color: #E56C00;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.heroSection {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  color: #fbfbfb;
}

.heroImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.heroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.7);
}

.heroContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.heroContent h1 {
  font-size: clamp(3rem, 2.5rem + 2.5vw, 5.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.heroLogo {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.heroContent h2 {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.heroContent p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.heroCta {
  margin-top: 2rem;
}

/* Feature Section */
.featureSection {
  background-color: #F9F2EA;
  position: relative;
  overflow: hidden;
}

.featureSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 122, 0, 0) 100%);
  z-index: 0;
}

.featureGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.featureCard {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 122, 0, 0.1);
}

.featureCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
}

.featureCard figure {
  overflow: hidden;
  height: 240px;
  position: relative;
}

.featureCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featureCard:hover img {
  transform: scale(1.05);
}

.featureCard h3 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  padding: 2rem 2rem 1rem;
  color: #FF7A00;
  font-weight: 700;
  position: relative;
}

.featureCard h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  width: 30px;
  height: 2px;
  background-color: #FF7A00;
}

.featureCard p {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  padding: 1rem 2rem 2rem;
  line-height: 1.6;
  color: #666;
}

/* Access Section */
.accessSection {
  background-color: #F9F2EA;
}

.accessContent {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.accessContent h3 {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.75rem);
  color: #FF7A00;
  margin-bottom: 1rem;
}

.accessContent p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.accessContent .map {
  margin-top: 2rem;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Feature Section */
.accessSection, .hoursSection {
  background-color: #fbfbfb;
}

.accessContent, .hoursContent {
  text-align: center;
}

/* Menu Section */
.menuSection {
  background-color: #F9F2EA;
  position: relative;
}

.menuGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menuCard {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menuCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.menuCard figure {
  overflow: hidden;
  height: 200px;
}

.menuCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menuCard:hover img {
  transform: scale(1.05);
}

.menuInfo {
  padding: 1.5rem;
}

.menuInfo h3 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #FF7A00;
}

.menuDescription {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.menuPrice {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: #8B4513;
}

/* Contact Section */
.contactSection {
  background-color: #fbfbfb;
  text-align: center;
}

.contactContent {
  max-width: 800px;
  margin: 0 auto;
}

.contactContent h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  color: #333;
  margin-bottom: 1.5rem;
}

.contactTel {
  margin-bottom: 3rem;
}

.contactTel a {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  color: #FF7A00;
  font-weight: 700;
  display: inline-block;
  padding: 1rem 2rem;
  border: 3px solid #FF7A00;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contactTel a:hover {
  background-color: #FF7A00;
  color: #fff;
}

.contactForm {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.formGroup {
  margin-bottom: 1.5rem;
}

.formGroup label {
  display: block;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  margin-bottom: 0.5rem;
  color: #333;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  transition: border-color 0.3s ease;
}

.formGroup input:focus,
.formGroup textarea:focus {
  border-color: #FF7A00;
  outline: none;
}

.contactForm button {
  display: block;
  margin: 0 auto;
}

/* Media Queries */
@media (width < 768px) {
  .contactTel a {
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    padding: 0.75rem 1.5rem;
  }
}