/* Big Daddy's BBQ - Authentic Southern BBQ Styling */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #2c1810;
  background: #f8f6f3;
  line-height: 1.6;
}

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

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.1rem;
  margin: 5px 0 20px;
  font-style: italic;
  color: #f4e4bc;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.order-btn {
  background: #d2691e !important;
  border: 2px solid #cd853f !important;
  font-weight: 700;
}

.order-btn:hover {
  background: #cd853f !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback for missing hero image */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  z-index: 1;
}

.hero-background::after {
  content: '🍖 Big Daddy\'s BBQ 🍖';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #f4e4bc;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  line-height: 1.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  margin: 0 0 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin: 0 0 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #d2691e;
  color: #fff;
  border-color: #cd853f;
}

.btn-primary:hover {
  background: #cd853f;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #8B4513;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Menu Section */
.menu-section {
  padding: 80px 0;
  background: #fff;
}

.menu-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 40px;
  color: #8B4513;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-tab {
  background: #f8f6f3;
  border: 2px solid #d2691e;
  color: #8B4513;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: #d2691e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.menu-item {
  background: #f8f6f3;
  border: 2px solid #e6ddd4;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(210, 105, 30, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  border-color: #d2691e;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.menu-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: #8B4513;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #d2691e;
  font-weight: 700;
  font-size: 1.2rem;
}

.menu-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #f8f6f3;
}

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

.about-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #8B4513;
  margin: 0 0 30px;
}

.about-text p {
  font-size: 1.1rem;
  margin: 0 0 20px;
  line-height: 1.8;
  color: #444;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e6ddd4;
}

.feature h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

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

.about-image-photo {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #8B4513;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Fallback for missing smoker image */
.about-image-photo:not([src*="smoker"]) {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4e4bc;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.about-image-photo:not([src*="smoker"])::before {
  content: '🔥 Traditional BBQ Smoker 🔥';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  line-height: 1.3;
}

.image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #8B4513;
  font-weight: 600;
}

/* Hours Section */
.hours-section {
  padding: 80px 0;
  background: #fff;
}

.hours-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 40px;
  color: #8B4513;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hours-info h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hours-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e6ddd4;
  font-weight: 600;
  color: #444;
}

.contact-info p {
  margin: 10px 0;
  color: #666;
}

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

.map-iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Order Section */
.order-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.order-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 40px;
  color: #8B4513;
}

.order-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.order-info h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.order-info p {
  font-size: 1.1rem;
  margin: 0 0 30px;
  color: #444;
}

.order-options {
  display: grid;
  gap: 20px;
}

.order-option {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e6ddd4;
  text-align: center;
}

.order-option h5 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.order-option p {
  margin: 5px 0;
  color: #666;
}

.order-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e6ddd4;
}

.order-form h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  margin: 0 0 20px;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #8B4513;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e6ddd4;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d2691e;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 40px;
  color: #8B4513;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0 0 30px;
  color: #444;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  background: #f8f6f3;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e6ddd4;
}

.contact-item strong {
  color: #8B4513;
  display: block;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
}

.contact-item p {
  margin: 0;
  color: #666;
}

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

.social-media h4 {
  font-family: 'Oswald', sans-serif;
  color: #8B4513;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: inline-block;
  background: #d2691e;
  color: #fff;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #cd853f;
}

.social-link:hover {
  background: #cd853f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background: #2c1810;
  color: #f4e4bc;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-family: 'Oswald', sans-serif;
  color: #d2691e;
  margin: 0 0 15px;
  font-size: 1.3rem;
}

.footer-section p {
  margin: 5px 0;
  color: #ccc;
}

.footer-section a {
  color: #f4e4bc;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d2691e;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content,
  .hours-content,
  .order-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .main-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav a {
    width: 200px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
