/* ==========================================
   Pop-Up Restaurant Template - Main CSS
   Modern Design with Conservative Typography
   ========================================== */

/* ==========================================
   CSS Variables - Color Palette
   ========================================== */
:root {
  /* Primary Colors */
  --primary-color: #d3db13;      /* Gold */
  --secondary-color: #421302;    /* Saddle Brown */
  --accent-color: #394a74;       /* Dark Blue-Gray */
  --highlight-color: #ff1139;    /* Red */
  --neutral-color: #9de8e5;      /* Gray */
  
  /* Light Shades */
  --primary-light: #fff9e9;
  --secondary-light: #d0bc70;
  --accent-light: #64a2b3;
  --highlight-light: #da5670;
  --neutral-light: #7098a1;
  
  /* Dark Shades */
  --primary-dark: #d76b11;
  --secondary-dark: #684820;
  --accent-dark: #000000;
  --highlight-dark: #81322d;
  --neutral-dark: #9e9e9e;
  
  /* Text Colors */
  --text-primary: #216070;
  --text-secondary: #333333;
  --text-light: #ffffff;
  --text-muted: #d6d6d6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #2b6d7e;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1rem;
  
  /* Shadows and Effects */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ==========================================
   Base Typography - Conservative Sizes
   ========================================== */
body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1 { 
  font-size: var(--font-size-h1); 
  font-weight: 700; 
  margin-bottom: 1.18rem;
  line-height: 1.2;
}

h2 { 
  font-size: var(--font-size-h2); 
  font-weight: 600; 
  margin-bottom: 0.95rem;
  line-height: 1.3;
}

h3 { 
  font-size: var(--font-size-h3); 
  font-weight: 600; 
  margin-bottom: 0.84rem;
  line-height: 1.3;
}

h4 { 
  font-size: var(--font-size-h4); 
  font-weight: 500; 
  margin-bottom: 0.73rem;
  line-height: 1.4;
}

h5 { 
  font-size: var(--font-size-h5); 
  font-weight: 500; 
  margin-bottom: 0.56rem;
  line-height: 1.4;
}

h6 { 
  font-size: var(--font-size-h6); 
  font-weight: 500; 
  margin-bottom: 0.56rem;
  line-height: 1.4;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1.18rem;
  color: var(--text-secondary);
}

/* ==========================================
   Reduced Motion Support
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   Header and Navigation
   ========================================== */
.header {
  position: relative;
  z-index: 1000;
}

.navbar {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.navbar-brand {
  font-size: 1.51rem !important;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../OPT_images/hero-pattern.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--accent-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1.71rem;
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 0 0 50% 0;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ==========================================
   Section Styling
   ========================================== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.19rem;
}

.section-title h2 {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.section-title h4 {
  color: var(--secondary-color);
  margin-bottom: 1.18rem;
}

/* ==========================================
   Feature Cards
   ========================================== */
.feature-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3.10rem;
  color: var(--primary-color);
  margin-bottom: 1.18rem;
}

.feature-card h5 {
  color: var(--accent-color);
  margin-bottom: 1.18rem;
}

/* ==========================================
   Service Cards
   ========================================== */
.service-card {
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h5 {
  color: var(--accent-color);
  margin-bottom: 1.18rem;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.71rem;
}

.service-content ul li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.price {
  font-size: 1.51rem;
  font-weight: 700;
  color: var(--highlight-color);
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 10px;
}

/* ==========================================
   Team Cards
   ========================================== */
.team-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.18rem;
  border: 4px solid var(--primary-color);
}

.team-card h5 {
  color: var(--accent-color);
  margin-bottom: 0.56rem;
}

.team-card p {
  color: var(--secondary-color);
  font-weight: 500;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
  background: linear-gradient(135deg, var(--bg-secondary), var(--neutral-light));
}

.contact-form {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 229, 134, 0.25);
}

.contact-icon {
  font-size: 2.15rem;
  color: var(--primary-color);
  margin-bottom: 1.18rem;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-base);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
  color: var(--text-light);
}

.footer h5, .footer h6, footer p {
  color: var(--primary-color);
  margin-bottom: 1.18rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer a:hover {
  color: var(--primary-color);
}

.footer ul {
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.56rem;
}

/* ==========================================
   Breadcrumb Navigation
   ========================================== */
.breadcrumb-nav {
  background: var(--bg-secondary);
  padding: 1rem 0;
  margin-top: 77.00px;
}

.breadcrumb-icon {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

/* ==========================================
   Space Section (for index_space.html)
   ========================================== */
#space {
  background: linear-gradient(135deg, var(--bg-secondary), var(--primary-light));
  padding: 2rem;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.object-cover {
  object-fit: cover;
}

.min-vh-100 {
  min-height: 100vh;
}

/* ==========================================
   Animation Classes
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
  .navbar, .footer, .breadcrumb-nav {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
} 