/* ============================================
   CLEAN MINIMAL RESTAURANT DESIGN
   ============================================ */

:root {
  /* Simple Color Palette */
  --primary-color: #d65f3b;
  --primary-light: #faf6f5;
  --primary-soft: #f5ebe8;
  --primary-accent: #e8a993;
  --text-color: #333333;
  --background-color: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e9ecef;
  --white: #ffffff;
  
  /* Simple Typography */
  --font-family: 'Roboto', sans-serif;
  --font-family-headers: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
  --font-family-brand: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
  --font-size-small: 14px;
  --font-size-base: 16px;
  --font-size-large: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  
  /* Simple Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  
  /* Simple Border Radius */
  --border-radius: 8px;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Navigation */
.navbar-ultra {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-ultra .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-family-brand);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  align-items: center;
}

.navbar-nav li {
  margin: 0;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(214, 95, 59, 0.1);
}

.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(214, 95, 59, 0.15);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.btn-royal-small {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  text-decoration: none;
  border: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  min-height: 40px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.btn-royal-small:hover {
  background-color: #b84a2a;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(214, 95, 59, 0.4) 0%, rgba(184, 74, 42, 0.3) 50%, rgba(214, 95, 59, 0.4) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
  padding: 140px 0 var(--spacing-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M40 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z"/></g></svg>') repeat;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero .ultra-title {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-family-brand);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .main-title {
  color: #fff2ee;
  font-size: 4rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  font-family: var(--font-family-brand);
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .hero-subtitle {
  color: #fff2ee;
  font-size: var(--font-size-xl);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.ultra-title {
  font-size: var(--font-size-xxl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.main-title {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: var(--font-size-large);
  color: #666;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ultra-modern {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  border: none;
  font-size: var(--font-size-base);
  display: inline-block;
  min-height: 44px;
  line-height: 1.4;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-royal-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 1.4;
  font-weight: 500;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alternate {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-soft) 100%);
  position: relative;
  padding: 80px 0;
}

.section-alternate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d65f3b" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-alternate .section-header {
  background: linear-gradient(90deg, transparent 0%, rgba(214, 95, 59, 0.05) 20%, rgba(214, 95, 59, 0.05) 80%, transparent 100%);
  padding: var(--spacing-lg) 0;
  border-radius: var(--border-radius);
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: var(--font-size-small);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.section-alternate .section-subtitle {
  background: linear-gradient(45deg, var(--primary-color), #b84a2a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(214, 95, 59, 0.1);
}

.section-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-family-headers);
  letter-spacing: 1px;
}

.section-description {
  font-size: var(--font-size-base);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.text-royal {
  color: var(--primary-color);
}

/* Cards */
.modern-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.section-alternate .modern-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(214, 95, 59, 0.1);
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-alternate .feature-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(214, 95, 59, 0.1);
}

.feature-card .card-icon {
  color: var(--primary-color);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
  font-family: var(--font-family-headers);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.5px;
}

.modern-card h3 {
  font-family: var(--font-family-headers);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
  color: var(--text-color);
}

.experience-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.stars {
  color: #ffc107;
  margin-bottom: var(--spacing-sm);
}

/* Grid Layout */
.grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Layout utilities for flexbox alternatives */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Contact */
.contact-item {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.section-alternate .contact-item {
  background: linear-gradient(135deg, rgba(214, 95, 59, 0.03) 0%, rgba(214, 95, 59, 0.08) 100%);
}

.contact-item:hover {
  transform: translateX(4px);
  background: linear-gradient(135deg, rgba(214, 95, 59, 0.05) 0%, rgba(214, 95, 59, 0.12) 100%);
}

.contact-icon {
  color: var(--primary-color);
  font-size: var(--font-size-large);
  min-width: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-soft) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: var(--border-radius);
  text-decoration: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 80px 0 40px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d65f3b" fill-opacity="0.05"><rect width="2" height="2" x="19" y="19"/></g></svg>') repeat;
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer a {
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: #666;
}

.mb-2 { margin-bottom: var(--spacing-xs); }
.mb-3 { margin-bottom: var(--spacing-sm); }
.mb-4 { margin-bottom: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-sm); }
.mt-4 { margin-top: var(--spacing-md); }
.mt-5 { margin-top: var(--spacing-lg); }

.d-flex {
  display: flex;
}

.gap-3 {
  gap: var(--spacing-sm);
}

.gap-4 {
  gap: var(--spacing-md);
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  
  .navbar-nav.active {
    left: 0;
  }
  
  .navbar-nav li {
    width: auto;
  }
  
  .nav-link {
    font-size: var(--font-size-large);
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  /* Mobile Hero */
  .hero {
    padding: 120px 0 60px 0;
    min-height: 100vh;
  }
  
  .hero .ultra-title {
    font-size: 2.5rem;
  }
  
  .hero .main-title {
    font-size: 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .hero-actions a {
    width: 250px;
    text-align: center;
  }
  
  /* Mobile Sections */
  .section {
    padding: 60px 0;
  }
  
  .section-alternate {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-alternate .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  /* Mobile Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  /* Mobile Container */
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  /* Mobile CTA */
  .reservation-cta {
    padding: 60px 0;
  }
  
  .reservation-cta .d-flex {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .reservation-cta .d-flex a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  /* Mobile Footer */
  .footer {
    padding: 60px 0 30px 0;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero .ultra-title {
    font-size: 2rem;
  }
  
  .hero .main-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .modern-card,
  .feature-card {
    padding: var(--spacing-sm);
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-alternate {
    padding: 40px 0;
  }
  
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .reservation-cta {
    padding: 40px 0;
  }
}

/* Hide complex elements for simplicity */
.luxury-divider,
.glass-effect,
.backdrop-filter,
.awards-row {
  display: none;
}

/* Remove Bootstrap row/col complexity - clean grid system */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

/* Bootstrap column classes - converted to flexible grid */
.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-md-3,
.col-md-4,
.col-md-6 {
  /* Grid handles layout automatically */
  min-width: 0; /* Prevent overflow */
}

/* CTA Section */
.reservation-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b84a2a 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><polygon points="50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40"/></g></svg>') repeat;
  pointer-events: none;
}

.reservation-cta > .container {
  position: relative;
  z-index: 1;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  border: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  min-height: 44px;
  line-height: 1.4;
  box-sizing: border-box;
}

.btn-white:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  min-height: 44px;
  line-height: 1.4;
  box-sizing: border-box;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* Enhanced Button Styles */
.btn-ultra-modern:hover {
  background-color: #b84a2a;
  transform: translateY(-1px);
}

.btn-royal-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
}

/* Smooth Transitions */
.btn-ultra-modern,
.btn-royal-outline,
.btn-royal-small,
.nav-link,
.social-link {
  transition: all 0.3s ease;
}

/* Enhanced Card Styles */
.modern-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headers);
  letter-spacing: 0.5px;
  font-weight: 600;
}

h1 {
  font-family: var(--font-family-brand);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

.reservation-cta h2 {
  font-family: var(--font-family-headers);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer h5 {
  font-family: var(--font-family-headers);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-item h5 {
  font-family: var(--font-family-headers);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

/* Form Improvements */
input, textarea {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color) !important;
}
