/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

/* =====================
   CONTAINER CONTROL
===================== */
section {
  padding: 60px 5%;
  margin: 40px auto;
  max-width: 1200px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section:nth-child(even) {
  background: #f2f2f2;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
}

h4 {
  margin-bottom: 20px;
  text-align: center;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #777;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =====================
   HERO
===================== */
.hero {
  height: 80vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 110%;
  object-fit: cover;
}

/* =====================
   ABOUT SECTION
===================== */

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.founder-box {
  flex: 1;
  text-align: center;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.founder-box img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  margin: auto;
}

.founder-box h3 {
  margin-top: 20px;
}

.founder-name {
  font-weight: bold;
  color: #555;
}

.founder-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

}

/* =====================
   GRID SYSTEM
===================== */
.menu-grid,
.venue-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-box,
.venue-box,
.event-grid img {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.menu-box {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.menu-box h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.menu-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background 0.3s ease;
}

.menu-box:hover {
  transform: scale(1.05);
}

.menu-box:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
}

/* Background images */
.drinks {
  background-image: url("assets/drinks.jpg");
}

.food {
  background-image: url("assets/food.jpg");
}

.sushi {
  background-image: url("assets/sushi.jpg");
}

.menu-box:hover,
.venue-box:hover,
.event-grid img:hover {
  transform: scale(1.05);
}

/* =====================
   GALLERY
===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  border-radius: 15px;
}

/* =====================
   TABLE
===================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

/* =====================
   FORM
===================== */
form {
  max-width: 600px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #333;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #777;
}

/* =====================
   SOCIALS
===================== */
.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
}

.socials img {
  height: 30px;
  transition: 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {

  section {
    padding: 40px 20px;
    margin: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 5%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 220px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    height: 60vh;
  }

  h2 {
    font-size: 1.4rem;
  }

  table {
    font-size: 14px;
  }

}
