/* General Styles */
:root {
  --primary-color: #e5771f;
  --secondary-color: #333;
  --accent-color: #f8b600;
  --accent-dark-color: #e0a500;
  --white-color: #fff;
  --light-gray: #f4f4f4;
  --text-color: #444;
  --text-secondary: #777;
  --heading-color: #222;
  --border-color: #ddd;
  --transition: all 0.3s ease-in-out;
  --container-width: 1200px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.bg-light {
  background-color: var(--light-gray);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.primary-button:hover {
  background-color: #d16a1a;
}

.secondary-button {
  background-color: var(--light-gray);
  color: var(--secondary-color);
}

.secondary-button:hover {
  background-color: #e0e0e0;
}

.tertiary-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.tertiary-button:hover {
  background-color: var(--accent-dark-color);
  color: var(--white-color);
}

.read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Header */
.main-header {
  background-color: var(--white-color);
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

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

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.logo .logo-unique {
  color: var(--primary-color);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links li:first-child {
  margin-left: 0;
}

.nav-links a {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

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

.hamburger-menu {
  display: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-buttons a {
  margin-right: 15px;
}

.hero-buttons a:last-child {
  margin-right: 0;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Featured Section */
.featured-section {
  padding: 80px 0;
}

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

.featured-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Added transition for hover effect */
}

.featured-card:hover {
  transform: translateY(-8px); /* Slight lift on hover */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.featured-card .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.featured-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.featured-card:hover .image-wrapper img {
  transform: scale(1.05); /* Gentle zoom on hover */
}

.featured-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.featured-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Build Your Dream Burger Section */
.build-your-burger-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: start;
}

.build-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.build-category {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.build-category h3 {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.build-category .ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.build-category .ingredient-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.build-category .ingredient-list li label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
}

.build-category .ingredient-list li img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.build-preview {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.build-preview h3 {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.preview-area {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .build-your-burger-content {
    grid-template-columns: 1fr;
  }

  .build-options-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .build-preview {
    margin-top: 30px;
  }
}

/* Why Different Section */
.why-different-section {
  padding: 80px 0;
}

.why-different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  align-items: center;
}

.why-different-card {
  text-align: center;
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.why-different-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  animation: icon-pulse 1.2s ease-in-out 0.3s both; /* Icon pulse animation */
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.why-different-card h3,
.why-different-card p {
  animation: why-different-text-in 0.7s ease-out 0.5s both; /* Text slide-in animation */
}

@keyframes why-different-text-in {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.why-different-image {
  text-align: center;
}

.why-different-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* News & Offers Section */
.news-offers-section {
  padding: 80px 0;
}

.news-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.news-column h2,
.offers-column h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  text-align: center;
}

.news-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease-in-out; /* Added transition */
}

.news-item:hover {
  background-color: var(--light-gray); /* Subtle hover background */
}

.news-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.news-date {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.news-item p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.offers-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease-in-out; /* Added transition */
}

.offers-item:hover {
  background-color: var(--light-gray); /* Subtle hover background */
}

.offers-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.offers-item .offer-details {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.offers-item .offer-expiry {
  font-size: 0.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

/* About Us Section */
.about-us-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.about-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-content .button {
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out; /* Added transition */
}

.about-content .button:hover {
  transform: scale(1.03);
  background-color: var(--primary-color);
  color: var(--white-color);
}

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

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  animation: pulse 1.5s infinite alternate; /* More pronounced pulse */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-button:hover {
  background-color: var(--accent-dark-color);
  color: var(--white-color);
}

/* Main Footer */
.main-footer {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 60px 0;
  font-size: 0.9rem;
}

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

.footer-logo a {
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-logo .logo-unique {
  color: var(--primary-color);
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact i {
  font-size: 1rem;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-copyright p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }

  .hamburger-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-buttons a {
    margin: 0 10px;
  }

  .about-grid,
  .news-offers-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .build-container {
    grid-template-columns: 1fr;
  }

  .build-options {
    margin-bottom: 20px;
  }

  .why-different-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .why-different-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .featured-grid,
  .why-different-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .build-options {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 95%;
  }

  .news-offers-grid {
    grid-template-columns: 1fr;
  }
}

/* Menu Page Style */
.menu-page {
  padding-top: 80px;
}

.menu-hero {
  background-color: var(--light-gray);
  text-align: center;
  padding: 80px 0;
}

.menu-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.menu-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

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

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

.menu-item {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.item-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 15px;
}

.item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.menu-item:hover .item-image-wrapper img {
  transform: scale(1.05);
}

.item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-name {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.item-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.item-price {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.add-to-order-btn {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.add-to-order-btn:hover {
  background-color: var(--accent-dark-color);
  color: var(--white-color);
}

/* Responsive adjustments for menu grid */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Specials Page Style */
.specials-page {
  padding-top: 80px;
}

.specials-hero {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 80px 0;
}

.specials-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.specials-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.7);
}

.specials-items {
  padding: 60px 0;
}

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

.special-card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.special-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.special-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.special-card:hover .special-image-wrapper img {
  transform: scale(1.05);
}

.special-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.special-name {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.special-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.special-price-like {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.special-price {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
}

.like-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.like-button:hover,
.like-button.liked {
  color: var(--primary-color);
}

.like-button i {
  font-size: 1.5rem;
}

.limited-time {
  background-color: #ff4d4d;
  color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  align-self: flex-start;
  margin-bottom: 10px;
}

.countdown-timer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .specials-grid {
    grid-template-columns: 1fr;
  }
}

/* Events Page Style */
.events-page {
  padding-top: 80px;
}

.events-hero {
  background-color: var(--secondary-color);
  color: var(--white-color);
  text-align: center;
  padding: 80px 0;
}

.events-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.events-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.events-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.events-filter .filter-btn {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.events-filter .filter-btn.active,
.events-filter .filter-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.events-list {
  padding: 60px 0;
}

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

.event-card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.event-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.event-card:hover .event-image-wrapper img {
  transform: scale(1.05);
}

.event-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-name {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.event-date-time {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.event-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.event-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.interest-button {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.interest-button:hover,
.interest-button.interested {
  background-color: var(--accent-dark-color);
  color: var(--white-color);
}

.interest-button i {
  font-size: 1.2rem;
}

.interested-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.view-details-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.view-details-link:hover {
  color: var(--accent-color);
}

/* Responsive adjustments for events grid */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Style */
.contact-page {
  padding-top: 80px;
}

.contact-hero {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 80px 0;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.contact-details {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  align-items: flex-start;
}

.contact-info {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 5px;
}

.submission-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: 500;
}

.submission-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.submission-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive adjustments for contact grid */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    margin-bottom: 40px;
  }
}
