
:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #333333;
  --accent: #8b8b8b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--black);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--black);
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  height: 100vh;
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url("hero.jpg") no-repeat center center/cover; */
  background-image: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) ), url('../hero2.jpg');
  background-size: cover;
  background-position: center top;
  /* color: var(--white); */
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
 }

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .container{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--black);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid var(--black);
}

.btn:hover {
  background-color: transparent;
  color: var(--black);
}

/* Story Section */
.story {
  padding: 80px 0;
}

.story .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story p {
  margin-bottom: 20px;
}

/* Specials Section */
.specials {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.specials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.special-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.special-item:hover {
  transform: translateY(-10px);
}

.special-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-item h3 {
  font-size: 1.5rem;
  margin: 20px 20px 10px;
}

.special-item p {
  margin: 0 20px 20px;
  color: var(--gray-dark);
}

/* Menu Page Styles */
.menu-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('https://picsum.photos/id/23/1920/1080') no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.menu-hero h1 {
  font-size: 3em;
}

.menu-section {
  padding: 60px 0;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h2 {
  font-size: 2em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.menu-item {
    display: grid;
    grid-template-columns: 35% 50% 5%;
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.menu-item h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.menu-item p {
  color: var(--gray-dark);
  font-size: 0.9em;
}

.price {
  font-weight: 600;
  white-space: nowrap;
  margin-left: 20px;
}

/* Contact Page Styles */
.contact-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('https://picsum.photos/id/504/1920/1080') no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.contact-hero h1 {
  font-size: 3rem;
}

.contact-section {
  padding: 60px 0;
}

.order-button {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-items {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  text-align: center;
}



.contact-form h2,
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-info h2 {
    text-align: center;
}


.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.map-placeholder {
  height: 300px;
  /* background-color: var(--gray-light); */
  background-color: var(--white);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--gray-dark);
  font-weight: 500;
}

/* Gallery Page Styles */
.gallery-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('https://picsum.photos/id/444/1920/1080') no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.gallery-hero h1 {
  font-size: 3rem;
}

.gallery-section {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* About Page Styles */
.about-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('https://picsum.photos/id/998/800') no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.about-hero h1 {
  font-size: 3rem;
}

.about-section {
  padding: 60px 0;
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.team-section {
  padding: 60px 0;
  background-color: var(--gray-light);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-member p {
  color: var(--gray-dark);
}

/* Footer Styles */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p {
  margin-bottom: 10px;
  color: var(--gray-medium);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-dark);
}

.footer-bottom p {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: left 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .story .container,
  .about-section .container {
    flex-direction: column;
  }


  .contact-section .container {
    grid-template-columns: 1fr;
  }

  .menu-hero,
  .contact-hero,
  .gallery-hero,
  .about-hero {
    height: 40vh;
  }

  .hero .container {
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .specials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
  