/* Global Styles */
:root {
  --primary-color: #6a3093;
  --primary-gradient: linear-gradient(to right, #6a3093, #a044ff);
  --secondary-color: #41c7c7;
  --dark-color: #222;
  --light-color: #f8f9fa;
  --accent-color: #ff9e43;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  letter-spacing: 1px;
}

.btn:hover {
  background: linear-gradient(to right, #5b2680, #8a38dd);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(106, 48, 147, 0.2);
}

.btn-secondary {
  background: linear-gradient(to right, var(--secondary-color), #6edfdf);
}

.btn-secondary:hover {
  background: linear-gradient(to right, #39b3b3, #5ecece);
  box-shadow: 0 15px 35px rgba(65, 199, 199, 0.2);
}

.text-center {
  text-align: center;
}

/* Navbar */
nav {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(106, 48, 147, 0.05) 0%, rgba(160, 68, 255, 0.1) 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  font-weight: 800;
  max-width: 100%;
}

.hero-text h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 80px;
  background: var(--primary-gradient);
  border-radius: 5px;
}

.hero-text .subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-top: -5px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  font-weight: 700;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(106, 48, 147, 0.1);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(106, 48, 147, 0.05) 0%, rgba(160, 68, 255, 0.1) 100%);
  transition: height 0.4s ease;
  z-index: -1;
}

.feature:hover {
  transform: translateY(-15px);
  border-color: rgba(106, 48, 147, 0.3);
}

.feature:hover::before {
  height: 100%;
}

.feature i {
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 25px;
  display: inline-block;
}

.feature h3 {
  margin-bottom: 15px;
}

.feature p {
  color: #666;
}

/* Menu Link Section */
.menu-link {
  padding: 80px 0;
  background: var(--light-color);
  text-align: center;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* TikTok Widget Section */
.social-widget {
  padding: 80px 0;
  background: var(--light-color);
  text-align: center;
}

.social-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.tiktok-container, .facebook-container {
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.tiktok-container:hover, .facebook-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tiktok-promo {
  text-align: center;
}

.tiktok-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tiktok-icon i {
  font-size: 40px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tiktok-promo h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.tiktok-promo p {
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.tiktok-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tiktok-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tiktok-feature i {
  font-size: 24px;
  color: #FE2C55;
}

.tiktok-feature span {
  font-weight: 600;
  color: #333;
}

.tiktok-btn {
  background: linear-gradient(90deg, #25F4EE, #FE2C55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px 35px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.tiktok-btn:hover {
  background: linear-gradient(90deg, #20E1DB, #EB1F4C);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.facebook-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .social-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tiktok-features {
    flex-direction: column;
    gap: 15px;
  }
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.about-text p {
  margin-bottom: 20px;
  color: #666;
}

.about-text .btn {
  margin-top: 10px;
}

/* Booking Section */
.booking {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(106, 48, 147, 0.9) 0%, rgba(160, 68, 255, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('jio790zz9e.jpg') no-repeat center center/cover;
  opacity: 0.05;
  animation: rotate 50s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.booking .container {
  position: relative;
  z-index: 1;
}

.booking .section-title h2, 
.booking .section-title p {
  color: #fff;
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(106, 48, 147, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 48, 147, 0.1);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}

.form-text {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.form-note {
  color: #fff;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
}

.honeypot-field {
  display: none;
  position: absolute;
  left: -9999px;
  height: 0;
  opacity: 0;
}

.security-question {
  color: #fff;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.form-note {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.google-form-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.google-form-container h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.google-form-container p {
  color: #555;
  margin-bottom: 20px;
}

.google-form-link {
  margin: 30px 0;
}

.google-form-link .btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  margin: 15px 0;
}

.booking-alternative {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid var(--secondary-color);
}

.booking-alternative h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.opening-hours {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.setup-instructions {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: left;
  border: 1px dashed #ccc;
}

.setup-instructions h4 {
  color: #dc3545;
  margin-bottom: 15px;
}

.setup-instructions ol {
  padding-left: 20px;
}

.setup-instructions ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.setup-instructions li {
  margin-bottom: 8px;
}

.captcha-question {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.captcha-input {
  width: 80px !important;
  margin-left: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 48, 147, 0.1);
}

.contact-info:hover {
  transform: translateY(-10px);
  border-color: rgba(106, 48, 147, 0.3);
  box-shadow: 0 15px 35px rgba(106, 48, 147, 0.1);
}

.contact-info i {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #666;
}

.map {
  padding: 80px 0;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.97) 0%, rgba(51, 51, 51, 0.97) 100%);
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('8w4wippvlx.jpg') no-repeat center center/cover;
  opacity: 0.03;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-about h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 50px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-text {
  margin-left: 10px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

/* Facebook styling */
.facebook-link {
  background: #3b5998;
  border: 2px solid #3b5998;
}

.facebook-link:hover {
  background: #4c70ba;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 89, 152, 0.3);
}

/* TikTok styling */
.tiktok-link {
  background: linear-gradient(90deg, #25F4EE, #FE2C55, #000000);
  background-size: 300% 100%;
  animation: gradient-animation 3s ease infinite;
  border: none;
}

.tiktok-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(254, 44, 85, 0.3);
  animation-play-state: paused;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Just Eat styling */
.just-eat-link {
  background: #f36d00;
  border: 2px solid #f36d00;
}

.just-eat-link:hover {
  background: #ff7c1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(243, 109, 0, 0.3);
}

.social-links a:hover {
  color: #fff;
}

.footer-content .social-links {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .footer-content .social-links {
    justify-content: center;
  }
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    display: block;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}