/* 
* Barburrito Website Styles
* Mexican Restaurant Theme
*/

/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #457b9d;
  --accent-color: #f1c40f;
  --dark-color: #1d3557;
  --light-color: #f1faee;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --text-color: #333;
  --border-color: #dee2e6;
  --border-radius: 5px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

ul, ol {
  list-style: none;
}

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

button, .btn {
  cursor: pointer;
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem 2.4rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

button:hover, .btn:hover {
  background-color: #d62839;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.center {
  text-align: center;
}

/* Header & Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 5rem;
  width: auto;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

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

nav ul li a.order-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
}

nav ul li a.order-btn:hover {
  background-color: #d62839;
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.1rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

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

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 60rem;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

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

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  max-width: 80rem;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius);
}

.slide-content h1 {
  font-size: 4.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.slide-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--dark-color);
  border: none;
  font-size: 2.4rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

.slider-prev:hover, .slider-next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: #fff;
}

.features .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.feature-box {
  flex: 1;
  min-width: 30rem;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: #fff;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.feature-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Popular Items Section */
.popular-items {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.popular-items h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

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

.item img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.item h3 {
  padding: 2rem 2rem 1rem;
  font-size: 2.2rem;
}

.item p {
  padding: 0 2rem 2rem;
  color: var(--gray);
}

.item .btn {
  margin: 0 2rem 2rem;
}

/* Blog Preview Section */
.blog-preview {
  padding: 8rem 0;
  background-color: #fff;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.post h3 {
  padding: 2rem 2rem 1rem;
  font-size: 2.2rem;
}

.post p {
  padding: 0 2rem 2rem;
  color: var(--gray);
}

.read-more {
  display: inline-block;
  margin: 0 2rem 2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--dark-color);
  color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 5rem;
  color: white;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  flex: 1;
  min-width: 30rem;
  max-width: 40rem;
}

.stars {
  color: var(--accent-color);
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial h4 {
  color: var(--accent-color);
  font-weight: 600;
}

/* Call to Action Section */
.call-to-action {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.call-to-action h2 {
  color: white;
  margin-bottom: 2rem;
}

.call-to-action p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action .btn {
  background-color: white;
  color: var(--primary-color);
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
}

.call-to-action .btn:hover {
  background-color: var(--light-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 1;
  min-width: 25rem;
}

.footer-logo img {
  height: 6rem;
  width: auto;
  margin-bottom: 2rem;
}

.footer-logo p {
  color: var(--gray-light);
}

.footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 20rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--gray-light);
}

.footer-contact p svg {
  margin-right: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  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 {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-light);
}

.legal-links {
  margin: 2rem 0;
}

.legal-links a {
  color: var(--gray-light);
  margin: 0 1.5rem;
  transition: var(--transition);
}

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

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.page-banner h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.page-banner p {
  font-size: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* Menu Page Styles */
.menu-categories {
  background-color: white;
  padding: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 8rem;
  z-index: 100;
}

.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-nav-item {
  padding: 1rem 2rem;
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.menu-nav-item:hover, 
.menu-nav-item.active {
  background-color: var(--primary-color);
  color: white;
}

.menu-section {
  padding: 8rem 0;
}

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

.section-description {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 5rem;
  color: var(--gray);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
}

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

.menu-section:nth-child(odd) .menu-item {
  background-color: white;
}

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

.menu-item img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
}

.menu-item-content {
  padding: 2rem;
  flex: 1;
}

.menu-item-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.menu-item-description {
  color: var(--gray);
  margin-bottom: 2rem;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.add-to-cart {
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
}

/* Blog Page Styles */
.blog-content {
  padding: 8rem 0;
}

.blog-post {
  max-width: 90rem;
  margin: 0 auto 8rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.post-content {
  padding: 4rem;
}

.post-content h2 {
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  color: var(--gray);
  font-size: 1.4rem;
}

.newsletter {
  background-color: var(--light-color);
  padding: 8rem 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1.5rem;
}

.newsletter p {
  max-width: 60rem;
  margin: 0 auto 3rem;
}

.newsletter-form {
  max-width: 60rem;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-group input {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

/* About Page Styles */
.about-story {
  padding: 8rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 30rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
  min-width: 30rem;
}

.mission-values {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

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

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-box .icon {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.team {
  padding: 8rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 2rem 0 0.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-member p:last-of-type {
  padding: 0 2rem;
  color: var(--gray);
}

.locations {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.locations h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin: 5rem 0;
}

.location {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.location h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.location p {
  margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 8rem 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}

.contact-info {
  flex: 1;
  min-width: 30rem;
}

.contact-info h2 {
  margin-bottom: 4rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.info-item .icon {
  margin-right: 2rem;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.info-content h3 {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 4rem;
}

.social-links h3 {
  margin-bottom: 2rem;
}

.contact-form-container {
  flex: 1;
  min-width: 35rem;
}

.contact-form-container h2 {
  margin-bottom: 4rem;
}

.contact-form .form-group {
  margin-bottom: 2.5rem;
  display: block;
}

.contact-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-family);
}

.contact-form textarea {
  resize: vertical;
  min-height: 15rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
}

.map-section {
  padding: 0 0 8rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-section {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-container {
  max-width: 90rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.faq-toggle {
  font-size: 2.4rem;
  font-weight: 700;
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background-color: var(--light-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.thank-you-popup.show {
  display: flex;
}

.popup-content {
  background-color: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 50rem;
  width: 90%;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.8rem;
  cursor: pointer;
  color: var(--gray);
}

.popup-content svg {
  margin: 0 auto 2rem;
}

.popup-content h2 {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.popup-content p {
  margin-bottom: 3rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  padding: 2rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 120rem;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 1rem 2rem;
  font-size: 1.4rem;
}

#cookie-accept {
  background-color: var(--success-color);
}

#cookie-customize {
  background-color: var(--secondary-color);
}

#cookie-decline {
  background-color: var(--gray);
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Font Size Control */
.font-size-control {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 900;
}

#decrease-font {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-color);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 56.25%; /* 9px */
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%; /* 8px */
  }
  
  .menu-item {
    flex-direction: column;
  }
  
  .menu-item img {
    width: 100%;
    height: 20rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  nav.show {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav ul li {
    margin: 1.5rem 0;
    width: 100%;
  }
  
  nav ul li a.order-btn {
    display: block;
    text-align: center;
    margin-top: 2rem;
  }
  
  .slide-content h1 {
    font-size: 3.6rem;
  }
  
  .feature-box {
    min-width: 100%;
  }
  
  .footer-content > div {
    min-width: 100%;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .slide-content p {
    font-size: 1.6rem;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .menu-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-nav-item {
    width: 100%;
    text-align: center;
  }
}
