/* 
  Pizza73 Blog - Main Stylesheet
  
  Table of Contents:
  1. Variables
  2. Reset and Base Styles
  3. Typography
  4. Layout and Grid
  5. Header and Navigation
  6. Hero Section
  7. Features
  8. Blog Posts
  9. Testimonials
  10. Contact Form
  11. Footer
  12. Buttons and Links
  13. Cards and Boxes
  14. Forms
  15. Modals
  16. Cookie Consent
  17. Utilities and Helper Classes
  18. Media Queries
*/

/* 1. Variables */
:root {
  --primary-color: #e63946; /* Red - primary brand color */
  --secondary-color: #1d3557; /* Dark blue - secondary brand color */
  --accent-color: #fca311; /* Yellow - accent/highlight color */
  --text-color: #333333; /* Dark grey - main text color */
  --text-light: #666666; /* Medium grey - secondary text color */
  --background-color: #ffffff; /* White - main background */
  --background-alt: #f8f9fa; /* Light grey - alternate background */
  --border-color: #e0e0e0; /* Light grey - border color */
  --success-color: #4caf50; /* Green - success messages */
  --error-color: #f44336; /* Red - error messages */
  --header-height: 80px;
  --footer-bg: #1d3557;
  --footer-text: #ffffff;
  --container-width: 1200px;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* 2. Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px if browser default is 16px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

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

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

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

/* 4. Layout and Grid */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}

.col {
  flex: 1;
  padding: 0 1.5rem;
}

/* 5. Header and Navigation */
.welcome-message {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
}

header {
  background-color: white;
  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;
  height: var(--header-height);
}

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

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

nav ul {
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
}

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

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

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.font-size {
  display: flex;
  align-items: center;
}

#increase-font {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

#increase-font:hover {
  background-color: var(--primary-color);
}

/* 6. Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 10rem 0;
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  color: white;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

/* 7. Features */
.features {
  background-color: var(--background-alt);
}

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

.feature-box {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  background-color: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

.feature-box p {
  color: var(--text-light);
}

/* 8. Blog Posts */
.latest-posts {
  padding: 8rem 0;
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

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

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

.post p {
  padding: 0 2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.read-more:hover {
  color: var(--secondary-color);
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

/* Blog content styles */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  display: flex;
  margin-bottom: 4rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.post-image {
  flex: 0 0 300px;
}

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

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

.post-meta {
  display: flex;
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.post-meta .date {
  margin-right: 2rem;
}

/* Single Blog Post */
.blog-single {
  padding: 4rem 0;
}

.blog-single .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.blog-content article {
  margin-bottom: 4rem;
}

.blog-content article h2 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.blog-content article h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content article p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.blog-content article ul, 
.blog-content article ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-content article li {
  margin-bottom: 1rem;
}

.blog-content article blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  background-color: var(--background-alt);
  font-style: italic;
}

.share-post {
  margin-bottom: 4rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
}

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

.related-posts h3 {
  margin-bottom: 2rem;
}

.related-posts .posts-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sidebar {
  position: sticky;
  top: 100px;
}

.widget {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 3rem;
}

.widget h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.recent-posts li {
  margin-bottom: 1.5rem;
}

.recent-posts a {
  display: block;
  color: var(--text-color);
  font-weight: 500;
}

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

.special-offer {
  text-align: center;
}

.special-offer img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.special-offer h4 {
  margin-bottom: 1rem;
}

.special-offer p {
  margin-bottom: 2rem;
}

/* 9. Testimonials */
.testimonials {
  background-color: var(--background-alt);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 4rem;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2rem;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 300px;
  flex: 1;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  margin: 0 1.5rem;
}

.quote {
  position: relative;
  padding-top: 2rem;
}

.quote::before {
  content: '"';
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.author {
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2rem;
}

/* 10. Contact Form */
.contact-form-section {
  background-color: var(--background-alt);
  padding: 6rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

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

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.checkbox-label input {
  width: auto;
  margin-right: 1rem;
}

/* Contact info section */
.contact-info {
  padding: 6rem 0;
}

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

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

.contact-card .icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.contact-card h3 {
  margin-bottom: 1.5rem;
}

.contact-card p, .contact-card address {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-card a {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* FAQ section */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item h3 {
  padding: 2rem;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--primary-color);
}

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

/* 11. Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 6rem 0 0;
}

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

.footer-logo {
  flex: 2;
  min-width: 250px;
}

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

.footer-links {
  flex: 1;
  min-width: 160px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 2rem;
}

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

.footer-links a {
  color: #cccccc;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  flex: 2;
  min-width: 250px;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 2rem;
}

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

.footer-contact .icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.social-media a:hover {
  background-color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}

/* 12. Buttons and Links */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1.6rem;
}

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

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

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

.btn-secondary:hover {
  background-color: #16263e;
  color: white;
}

.btn-tertiary {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
  background-color: var(--background-alt);
}

/* 13. Cards and Boxes */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

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

.value-box .icon {
  background-color: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

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

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

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

.team-member p {
  padding: 0 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

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

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-text {
  font-size: 1.8rem;
  color: var(--text-light);
}

/* Menu page styles */
.menu-nav {
  background-color: var(--secondary-color);
  padding: 2rem 0;
  margin-top: -2rem;
}

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

.menu-categories a {
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  transition: var(--transition);
}

.menu-categories a:hover,
.menu-categories a.active {
  background-color: var(--primary-color);
}

.menu-items {
  padding: 6rem 0;
}

.menu-items:nth-child(odd) {
  background-color: var(--background-alt);
}

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

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

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

.menu-details {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-details h3 {
  margin-bottom: 1rem;
}

.menu-details p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.menu-details .btn-primary {
  margin-top: auto;
}

.order-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.order-cta h2 {
  color: white;
  margin-bottom: 2rem;
}

.order-cta p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

/* Page header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
}

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

.page-header p {
  font-size: 1.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-section p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* 14. Forms */
/* Already covered in "10. Contact Form" */

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

.modal.active {
  display: flex;
}

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

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--text-light);
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-icon {
  color: var(--success-color);
  font-size: 5rem;
  margin-bottom: 2rem;
}

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

.modal p {
  margin-bottom: 2.5rem;
}

.modal .btn-primary {
  margin-top: 1rem;
}

/* 16. Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  z-index: 1000;
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

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

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

.cookie-more {
  font-size: 1.4rem;
}

/* 17. Utilities and Helper Classes */
.text-center {
  text-align: center;
}

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

/* 18. Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .blog-single .container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  header .container {
    flex-direction: column;
    height: auto;
    padding: 2rem 0;
  }
  
  .logo {
    margin-bottom: 2rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .post-image {
    flex: none;
    height: 200px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-box {
    min-width: 100%;
  }
  
  .blog-post {
    margin-bottom: 3rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
