/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d3557;
  --accent-color: #f1c40f;
  --text-color: #333;
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --gray-color: #a8a8a8;
  --light-gray: #f5f5f5;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  background-color: #d32f2f;
  color: white;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.small-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.outline {
  background-color: transparent;
  border: 1px solid var(--light-color);
  color: var(--light-color);
}

.outline:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}

/* Layout & Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 5px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--light-color);
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Featured Section */
.featured {
  padding: 80px 0;
  background-color: white;
}

.featured h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.item p {
  padding: 0 20px;
  color: var(--text-color);
}

.item .price {
  display: block;
  padding: 0 20px 10px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.item .btn {
  margin: 0 20px 20px;
}

/* Popular Section */
.popular {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.popular h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* App Promo Section */
.app-promo {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: white;
}

.app-promo .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.app-text {
  flex: 1;
}

.app-text h2 {
  color: white;
  margin-bottom: 20px;
}

.app-text p {
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  background-color: white;
  color: var(--dark-color);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  font-weight: 700;
}

.app-btn svg {
  margin-right: 10px;
}

.app-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.app-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Blog Preview Section */
.blog-preview {
  padding: 80px 0;
  background-color: white;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.blog-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-item h3 {
  padding: 20px 20px 10px;
  font-size: 1.4rem;
}

.blog-item p {
  padding: 0 20px;
  color: var(--text-color);
}

.read-more {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  color: var(--primary-color);
}

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

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact svg {
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer-nav a {
  color: var(--light-color);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.copyright {
  font-size: 0.9rem;
  color: var(--light-color);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  padding: 15px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-content a {
  font-size: 0.9rem;
  color: var(--light-color);
  text-decoration: underline;
}

/* Blog Page Styles */
.page-banner {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  color: white;
  margin-bottom: 15px;
}

.blog-content {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-post h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.blog-post p {
  margin-bottom: 20px;
}

.newsletter {
  background-color: var(--light-gray);
  padding: 60px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  margin-top: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Blog Post Page */
.blog-post-full {
  padding: 60px 0;
}

.post-header {
  margin-bottom: 30px;
}

.back-to-blog {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-weight: 500;
}

.back-to-blog:hover {
  color: var(--primary-color);
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.post-callout {
  background-color: var(--light-gray);
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
}

.post-callout h3 {
  margin-bottom: 10px;
}

.post-callout p {
  margin-bottom: 0;
}

.post-cta {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 40px 0;
  text-align: center;
}

.post-cta h3 {
  color: var(--dark-color);
}

.post-share {
  margin: 40px 0;
}

.share-buttons {
  display: flex;
  gap: 15px;
}

.share-buttons a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  color: var(--dark-color);
}

.share-buttons a svg {
  margin-right: 8px;
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.related-posts {
  margin-top: 60px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.related-post {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.related-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post h4 {
  padding: 15px 15px 10px;
  font-size: 1.1rem;
}

.related-post .read-more {
  padding: 0 15px 15px;
}

/* Contact Page */
.contact-info {
  padding: 60px 0;
}

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

.contact-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-content h2 {
  margin-bottom: 20px;
}

.contact-form {
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.map-container {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hours h3 {
  margin-bottom: 15px;
}

.hours ul {
  list-style: none;
}

.hours li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.hours span {
  font-weight: 700;
}

/* Thank You Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  max-width: 500px;
  width: 90%;
  border-radius: var(--border-radius);
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.thank-you-message {
  padding: 40px;
  text-align: center;
}

.thank-you-message svg {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 30px;
}

/* About Page */
.about-story {
  padding: 80px 0;
}

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

.story-text h2 {
  margin-bottom: 20px;
}

.story-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.values {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card .icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.team {
  padding: 80px 0;
}

.team h2,
.team-intro {
  text-align: center;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 0 5px;
}

.team-member p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.milestones {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.milestones h2 {
  text-align: center;
  margin-bottom: 40px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.milestone {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.milestone:nth-child(odd) {
  flex-direction: row-reverse;
}

.milestone-date {
  min-width: 120px;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  font-weight: 700;
  border-radius: var(--border-radius);
  align-self: flex-start;
  margin: 0 20px;
  position: relative;
  z-index: 1;
}

.milestone-content {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1;
  max-width: calc(50% - 80px);
}

.milestone-content h3 {
  margin-bottom: 10px;
}

.milestone-content p {
  margin-bottom: 0;
}

.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: right;
}

.join-us {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: white;
}

.join-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join-content h2 {
  color: white;
  margin-bottom: 20px;
}

.join-content p {
  margin-bottom: 30px;
}

/* Menu Page */
.menu-nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.menu-tabs li {
  margin: 0;
}

.menu-tabs a {
  display: block;
  padding: 15px 25px;
  color: var(--dark-color);
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.menu-tabs a:hover,
.menu-tabs a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.menu-section {
  padding: 60px 0;
}

.menu-section:nth-child(odd) {
  background-color: var(--light-gray);
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category h3 {
  margin-bottom: 30px;
  text-align: center;
}

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

.menu-item {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.item-details {
  padding: 15px;
  flex: 1;
}

.item-details h4 {
  margin-bottom: 8px;
}

.item-details p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.item-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.item-sizes span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.wings-items {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.combo-items {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.combo-item {
  flex-direction: column;
}

.combo-item img {
  width: 100%;
  height: 200px;
}

.cta-banner {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-buttons .secondary-btn {
  border-color: white;
  color: white;
}

.cta-buttons .secondary-btn:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Deals Page */
.deals-banner {
  background-color: var(--primary-color);
}

.deals-banner h1,
.deals-banner p {
  color: white;
}

.deals-content {
  padding: 60px 0;
}

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

.deal-tab {
  padding: 10px 20px;
  background-color: var(--light-gray);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.deal-tab.active,
.deal-tab:hover {
  background-color: var(--primary-color);
  color: white;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.deal-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.deal-image {
  position: relative;
}

.deal-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--border-radius);
}

.deal-content {
  padding: 20px;
}

.deal-content h3 {
  margin-bottom: 10px;
}

.deal-content p {
  margin-bottom: 15px;
}

.deal-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.original {
  text-decoration: line-through;
  color: var(--gray-color);
}

.sale {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.discount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.deal-code {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.deal-signup {
  background-color: var(--dark-color);
  padding: 60px 0;
  color: white;
  margin-top: 60px;
}

.signup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.signup-text h2 {
  color: white;
  margin-bottom: 15px;
}

.signup-form {
  display: flex;
  flex: 1;
  max-width: 500px;
}

.signup-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
}

.signup-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.deal-faq {
  padding: 60px 0;
}

.deal-faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .story-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .milestone-content {
    max-width: calc(50% - 60px);
  }
  
  .signup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .signup-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .main-nav {
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav li {
    margin: 5px 10px;
  }
  
  .hero .container {
    flex-direction: column-reverse;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .app-promo .container {
    flex-direction: column;
  }
  
  .app-text {
    text-align: center;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-nav ul {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .milestone {
    flex-direction: row !important;
  }
  
  .milestone-date {
    min-width: 80px;
    padding: 5px;
    font-size: 0.9rem;
    margin: 0 15px 0 0;
  }
  
  .milestone-content {
    max-width: calc(100% - 95px);
  }
  
  .menu-tabs {
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .menu-tabs a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .menu-item {
    flex-direction: column;
  }
  
  .menu-item img {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .blog-post h2 {
    font-size: 1.5rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .deal-categories {
    flex-direction: column;
  }
}
