:root {
  --primary-orange: #f97415;
  --secondary-pink: #ec4899;
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--bg-white);
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-orange), #ff9f43);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(249, 116, 21, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(249, 116, 21, 0.5);
}

.btn-outline {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: white;
}

.text-orange {
  color: var(--primary-orange);
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #000;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  color: #e5e7eb;
  max-width: 600px;
}

/* Features Grid */
.features {
  padding: 5rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(249, 116, 21, 0.1);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Gallery/Menu Preview */
.gallery {
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Floating Valentine Button */
.fab-valentine {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary-pink);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.4);
  z-index: 100;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Footer */
footer {
  background: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* Mobile Responsive */
@media (max-width: 968px) {

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 49;
}

.mobile-nav.active {
  display: flex;
}

/* --- New Sections CSS --- */

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Events Section */
.events-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-content {
  padding: 1.5rem;
}

.event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-orange);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-pink {
  background: var(--secondary-pink);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Menu Highlights */
.menu-highlights {
  padding: 5rem 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  text-align: center;
  padding: 1rem;
}

.menu-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .menu-img img {
  transform: scale(1.1);
}

.menu-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.text-link {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--primary-orange);
  color: white;
}

.testimonials .section-title {
  color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-weight: 700;
  color: var(--text-gray);
}

/* Socials & Awards */
.socials-awards {
  padding: 5rem 0;
  background: var(--bg-white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.awards-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid #e5e7eb;
  padding-top: 3rem;
}

.award {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.award:hover {
  opacity: 1;
}

.award span {
  font-size: 2rem;
}

.award div {
  display: flex;
  flex-direction: column;
}

.award strong {
  font-size: 1.1rem;
}

.award strong {
  font-size: 1.1rem;
}

.award small {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(to right, var(--primary-orange), #ff9f43);
  color: white;
  padding: 4rem 0;
}

.bottom-cta h2 {
  font-size: 2rem;
  font-weight: 800;
}

.btn-white {
  background: white;
  color: var(--primary-orange);
}

.btn-white:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}