/* style.css */
@font-face {
  font-family: "Genty";
  src: url("assets/genty-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --bg-color: #4a0001;
  --accent-color: #ffe0a3;
  --text-color: #ffffff;
  --bg-darker: #2a0000;
  --font-heading: "Playfair Display", serif;
  --font-body: "Genty sans", "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
.heading-font {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-weight: 500;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}

nav.scrolled {
  background: rgba(59, 0, 1, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(252, 209, 131, 0.2);
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.order-btn {
  background: var(--accent-color);
  color: var(--bg-color);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(252, 209, 131, 0.3);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(252, 209, 131, 0.1) 0%,
    transparent 70%
  );
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 40px;
  opacity: 1;
  letter-spacing: 1px;
}

.goat-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Menu Section */
.menu-section {
  padding: 100px 5%;
  background: var(--bg-darker);
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 1.2rem;
  color: #ffffff;
  font-style: italic;
  font-family: var(--font-heading);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item {
  background: var(--bg-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.5s,
    box-shadow 0.5s;
  position: relative;
  border: 1px solid rgba(252, 209, 131, 0.2);
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-color);
}

.menu-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.menu-item:hover .menu-img-wrap img {
  transform: scale(1.1);
}

.menu-content {
  padding: 30px;
}

.menu-title {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.1;
}

.menu-desc {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
}

.order-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.order-link:hover {
  gap: 15px;
}

/* About Page Specific Styles */
.about-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(59, 0, 1, 0.8), rgba(42, 0, 0, 1)),
    url("assets/team_photo.png") center/cover;
  text-align: center;
  margin-top: 80px;
}

.about-hero h1 {
  font-size: 5rem;
  color: var(--accent-color);
}

.about-content {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 5%;
  background: var(--bg-darker);
}

.feature {
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(252, 209, 131, 0.2);
  border-radius: 20px;
  transition: all 0.3s;
}

.feature:hover {
  background: var(--bg-color);
  border-color: var(--accent-color);
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #1a0000;
  padding: 60px 5% 20px;
  text-align: center;
  border-top: 1px solid rgba(252, 209, 131, 0.2);
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 60px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}
