@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
link[rel="icon"] {
    display: inline !important;
    width: auto !important;
    height: auto !important;
  }
/* Base styles */
:root {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  
  --primary: 262 83% 58%;
  --primary-foreground: 0 0% 100%;
  
  --secondary: 217 33% 17%;
  --secondary-foreground: 0 0% 98%;
  
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 240 4.9% 83.9%;
  
  --radius: 0.75rem;

  /* Define lavender colors */
  --lavender-50: #f5f3ff;
  --lavender-100: #ebe8ff;
  --lavender-200: #d9d3fe;
  --lavender-300: #beb3fc;
  --lavender-400: #9f8af8;
  --lavender-500: #7a5af1;
  --lavender-600: #6938e5;
  --lavender-700: #5b29cc;
  --lavender-800: #4b24a6;
  --lavender-900: #3f2185;
  --lavender-950: #251352;
}

* {
  border-color: hsl(var(--border));
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: radial-gradient(circle at top right,
    rgba(103, 76, 175, 0.08) 0%,
    rgba(23, 25, 35, 0.1) 70%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

p {
  line-height: 1.625;
}

/* Container utility */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Component styles */
.container-custom {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .container-custom {
    padding: 3rem 2rem;
  }
}

.btn-primary {
  background-color: var(--lavender-600);
  color: white;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  transition: all 300ms;
}

.btn-primary:hover {
  background-color: var(--lavender-700);
  box-shadow: 0 10px 15px -3px rgba(103, 76, 175, 0.2);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(103, 76, 175, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(172, 155, 219, 0.5);
  color: var(--lavender-300);
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  transition: all 300ms;
}

.btn-secondary:hover {
  border-color: var(--lavender-600);
  color: white;
  background-color: rgba(103, 76, 175, 0.1);
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.glass-card {
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--lavender-400);
  transition: all 300ms;
}

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

.hover-scale {
  transition: all 300ms;
}

.hover-scale:hover {
  transform: scale(1.02);
}

.page-transition {
  animation: fade-in 500ms ease-out forwards;
}

/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Horizontal scroll utilities */
.horizontal-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Utility classes */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

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

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

.items-start {
  align-items: flex-start;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.text-white {
  color: white;
}

.text-lavender-400 {
  color: var(--lavender-400);
}

.text-gray-400 {
  color: #9ca3af;
}

.text-xl {
  font-size: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-semibold {
  font-weight: 600;
}

.p-5 {
  padding: 1.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.object-cover {
  object-fit: cover;
}

.transition-transform {
  transition-property: transform;
}

.duration-700 {
  transition-duration: 700ms;
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.z-50 {
  z-index: 50;
}

.transition-all {
  transition-property: all;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Header and navigation styles */
.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

.bg-black\/10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.h-16 {
  height: 4rem;
}

@media (min-width: 768px) {
  .h-16 {
    height: 5rem;
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

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

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.leading-tight {
  line-height: 1.25;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-black\/80 {
  --tw-gradient-stops: rgba(0, 0, 0, 0.8), var(--tw-gradient-to);
}

.via-black\/50 {
  --tw-gradient-via: rgba(0, 0, 0, 0.5);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);
}

.to-background {
  --tw-gradient-to: hsl(var(--background));
}

/* Hero video */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation */
.nav-active {
  color: var(--lavender-400);
}

.nav-active::after {
  width: 100%;
}
.close-menu-btn{
    display: none;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  z-index: 40;
  transition: transform 300ms;
}

.mobile-menu.hidden {
  transform: translateX(100%);
}

.mobile-menu.visible {
  transform: translateX(0);
}

/* Footer */
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.border-t {
  border-top-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

/* Restaurant page */
.food-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
}

/* Animated sections */
.animated-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  animation: slide-in 0.5s ease-out forwards;
}

@keyframes slide-in {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
