/* ==========================
   GLOBAL RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #111;
  color: #fff;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  border-radius: 12px;
}

/* ==========================
   HEADER / NAVBAR UPDATED
========================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: #f5c400;
  cursor: pointer;
}

/* LOGO IMAGE */
.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #f5c400;
  padding: 4px;
  background: #111;
}

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 28px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Hover Effect */
nav a:hover {
  color: #f5c400;
}

/* Active Link Highlight */
nav a.active {
  color: red;
}

/* Underline Animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f5c400;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ==========================
   RESPONSIVE NAVBAR
========================== */
@media (max-width: 900px) {
  .header {
    padding: 15px 25px;
  }

  nav {
    display: none; /* hide menu on mobile */
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 60px 0;
  /* background: radial-gradient(circle at left, #222, #000); */
  background: linear-gradient(to right, #000000cc, #00000088), url('../images/slide4.jpg') center/cover;

  background-position: center;
  background-repeat: no-repeat;

  /* ✅ Control Size Here */
  background-size: 150%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.2;
}

.hero-text span {
  color: #f5c400;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary {
  background: red;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-right: 15px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #c40000;
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border: 1px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* HERO IMAGE */
.hero-image img {
  max-width: 600px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ==========================
   COMMON SECTION STYLE
========================== */
section {
  padding: 80px 60px;
}

.section-content h2,
.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: #f5c400;
}

.section-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  max-width: 600px;
}

/* ==========================
   ABOUT SECTION
========================== */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background-color:#1a1a1a;
}

.about img {
  width: 420px;
  height: 420px;
  border-radius: 16px;
  box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.3);
  transition: transform 0.2s ease-in-out;
  animation: shine 3s ease-in-out infinite;
}

.about img:hover{
  transform: scale(1.1);
  box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.5);
}


/* ==========================
   MENU TABS SECTION
========================== */
/* ==========================
   MENU SECTION
========================== */
.menu {
  padding: 80px 60px;
  background: #111;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 25px;
  color: #f5c400;
}

/* Tabs Center */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.menu-tabs button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #222;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.menu-tabs button.active,
.menu-tabs button:hover {
  background: red;
}

/* Menu Item Box */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  max-width: 950px;
  margin: auto;
  padding: 35px;

  background: #1a1a1a;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Text Styling */
.menu-text {
  flex: 1;
  text-align: left;
}

.menu-text h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #f5c400;
}

.menu-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

/* Image Styling */
.menu-img {
  flex: 1;
  text-align: center;
}

.menu-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  transition: 0.4s;
}

.menu-img img:hover {
  transform: scale(1.05);
}

/* ==========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    text-align: center;
  }

  .menu-text {
    text-align: center;
  }
}

/* ==========================
   EVENTS SECTION
========================== */
.events {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background-color:#1a1a1a;
}

.events img {
  width: 420px;
  border-radius: 16px;
  box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.3);
}

.events img:hover{
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
  box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.5);
}

/* ==========================
   FOOTER SECTION
========================== */
footer {
  background: #000;
  padding: 50px 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-container h3 {
  margin-bottom: 12px;
  color: #f5c400;
}

.footer-container p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-container a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-container a:hover {
  color: red;
}

/* SOCIAL ICONS */
.footer-social a svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social a svg:hover {
  fill: #f5c400;
  transform: scale(1.2);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  font-size: 14px;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #222;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 900px) {
  .hero,
  .about,
  .events,
  .menu-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 45px;
  }

  nav {
    display: none;
  }

  .hero-image img,
  .about img,
  .events img,
  .menu-img img {
    width: 90%;
  }
}