/* Base Variables */
:root {
  --primary: #d9230f;
  --primary-light: #f8d7da;
  --secondary: #333;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
  padding-top: 72px; /* Offset for fixed navbar */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: var(--dark) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cater2.jpg') center/cover no-repeat;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #b71c1c;
  transform: translateY(-3px);
}

.btn-outline-light {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* About Section */
.about {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.about img {
  transition: var(--transition);
}

.about img:hover {
  transform: scale(1.02);
}

.features {
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-item i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* Highlights Section */
.highlights {
  padding: 4rem 0;
}

.highlight-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Call to Action */
.cta {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg') center/cover no-repeat;
  padding: 4rem 0;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--light-gray);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .menu-hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .menu-hero {
    padding: 120px 0 80px;
  }
  
  .menu-hero h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .card-body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .menu-hero {
    padding: 100px 0 60px;
    margin-top: 60px;
  }
  
  .menu-hero h1 {
    font-size: 1.8rem;
  }
  
  .menu-hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .btn-reserve, .btn-contact {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .navbar-brand span {
    font-size: 0.9rem;
  }
  
  .menu-hero {
    padding: 80px 0 50px;
  }
  
  .menu-categories {
    padding: 60px 0;
  }
  
  .card-image {
    height: 180px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 66px;
  }
  
  .hero {
    min-height: calc(100vh - 66px);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .about img {
    margin-bottom: 1.5rem;
  }
  
  .cta h2 {
    font-size: 1.75rem;
  }
  
  .cta .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .brand-text {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero .lead {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .footer {
    text-align: left;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    justify-content: left;
  }
}