@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
:root {
  /* Base Colors */
  --color-primary: #ca9c5e;
  --color-primary-light: #e0b87a;
  --color-secondary: #1a1a1a;
  --color-accent: #e74c3c;
  --color-success: #2ecc71;
  --color-bg: #111111;
  --color-bg-light: #1e1e1e;
  --color-white: #ffffff;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-overlay: rgba(0, 0, 0, 0.7);
  --color-soft-white: #bcbcbc;
  /* Transparent colors */
  --color-transparent-bg: rgba(76, 64, 64, 0.1);
  --color-shadow: rgba(0, 0, 0, 0.1);
}
body {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.section-title,
.column-title {
  font-family: "Dancing Script", cursive;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--color-bg);
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: var(--color-transparent-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px var(--color-shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  height: 100px;
  position: relative;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.social-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 1001;
}

.social-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-border);
  transform: translateY(-2px);
}

.social-links a {
  color: var(--color-white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 1.5px;
  position: relative;
}

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

.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a::before {
  top: -8px;
}

.nav-links a::after {
  bottom: -8px;
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-white);
  background: none;
  border: none;
  padding: 0.5rem;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .social-links {
    margin-right: 1rem;
  }
}

/* Hero Section */
.hero {
  border: 7px solid var(--color-primary);
  height: 100vh;
  background: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../images/header-hero.jpg") center/cover no-repeat, #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
}

.hero-decoration {
  position: absolute;
  max-width: 350px;
  height: auto;
  z-index: 1;
  transition: transform 0.5s ease;
}

.hero-decoration.tomato {
  left: -2%;
  z-index: 99;
  bottom: -15%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-decoration.onion {
  right: 0%;
  bottom: -25%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-decoration:hover {
  transform: scale(1.1) rotate(5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px;

  pointer-events: none;
  z-index: 1;
}

.hero-parallax {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  transition: transform 0.1s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
  text-align: center;
  transform: translateZ(0); /* Hardware acceleration */
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 0.95rem;
  letter-spacing: 4px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  border: none;
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}

/* About Section */
.about {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 70vh;
}

.about img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  animation: fadeInRight 1s ease;
  padding: 2rem 0;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--color-soft-white);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Tablet Styles */
@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    padding: 6rem 2rem;
    gap: 3rem;
  }

  .about img {
    height: 50vh;
    max-width: 80%;
    margin: 0 auto;
  }

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

/* Mobile Styles */
@media (max-width: 576px) {
  .about {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .about img {
    height: 40vh;
    max-width: 100%;
  }

  .about-content p {
    font-size: 1rem;
  }

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

  /* Hide tomato and onion on mobile */
  .hero-decoration.tomato,
  .hero-decoration.onion {
    display: none;
  }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
  .about {
    padding: 3rem 1rem;
  }

  .about img {
    height: 35vh;
  }

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

.section-title {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-weight: 600; /* Using SemiBold weight */
  line-height: 1.2;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--color-soft-white);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
}

.btn:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* New Menu Section */
.menu-section {
  padding: 6rem 2rem;
}

.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.menu-content {
  flex: 1;
  text-align: center;
  padding: 2rem;
}
.menu-content img {
  width: 150px;
}
.menu-content h2 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: "Dancing Script", cursive;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 2.5rem;
}

.menu-content p {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.qr-code img {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: pulse 2s infinite;
}

.qr-code::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
  animation: scan 3s linear infinite;
  z-index: 2;
  opacity: 0.8;
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.qr-code span {
  font-size: 0.9rem;
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.menu-image {
  flex: 1;
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-section .container {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .menu-content,
  .menu-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .menu-content {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .menu-section {
    padding: 4rem 1rem;
  }

  .menu-content h2 {
    font-size: 2rem;
  }

  .menu-content p {
    font-size: 1rem;
  }

  .qr-code img {
    width: 120px;
    height: 120px;
  }
}

/* Food Menu Section */
.food-menu {
  padding: 8rem 2rem 6rem;
  position: relative;
}

.menu-taco-image {
  position: absolute;
  top: -20%;
  left: -5%;
  width: 500px;

  z-index: 1;
}
.food-menu .section-p {
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
}
.food-menu .section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.column-title {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0 0 1.5rem 0;
  text-align: left;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(202, 156, 94, 0.3);
}

.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 1rem;
}

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

.item-header h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

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

.menu-item p {
  color: var(--color-soft-white);
  margin: 0;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-container {
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
  }

  .menu-taco-image {
    position: absolute;
    top: -15%;
    left: -5%;
    width: 350px;
  }

  .food-menu .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .food-menu {
    padding: 6rem 1.5rem 4rem;
  }

  .menu-taco-image {
    display: none;
  }

  .food-menu .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .menu-item {
    padding: 1.5rem;
  }

  .item-header h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.1rem;
  }
}

/* Special Offer Section */
.special-offer {
  position: relative;
  height: 70vh;
  background: url("../images/tacos.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  color: var(--color-white);
}

.special-decoration {
  position: absolute;
  z-index: 2;
  max-width: 150px;
}

.special-decoration.tomato {
  bottom: -55%;
  left: -5%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .special-decoration.tomato {
    display: none;
  }
}

.special-offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.special-offer-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: right;
  padding: 2rem;
  animation: fadeInRight 1s ease-out;
}

.special-offer h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: "Dancing Script", cursive;
  color: var(--color-primary);
}

.special-offer p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.special-offer .highlight {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 2rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.special-offer .btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: white;
  transition: all 0.3s ease;
}

.special-offer .btn:hover {
  background: var(--color-primary);
  transform: translateX(-10px);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: var(--color-primary);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.gallery-title {
  font-size: 3.5rem;
  color: var(--color-white);
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
}

.gallery-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* Item Sizes */
.gallery-item.wide {
  flex: 2;
  aspect-ratio: 16/9;
}

.gallery-item.tall {
  flex: 1;
  aspect-ratio: 3/4;
}

.gallery-item:not(.wide):not(.tall) {
  flex: 1;
  aspect-ratio: 1/1;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .gallery-row {
    flex-direction: column;
  }

  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item:not(.wide):not(.tall) {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 4rem 1.5rem;
  }

  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-overlay h3 {
    font-size: 1.2rem;
  }
}

/* Contact Section */
.contact {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--color-white);
  font-family: "Dancing Script", cursive;
  font-weight: 300;
}

.contact-grid {
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-form .form-group {
  position: relative;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  color: var(--color-white);
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-white);
  box-shadow: 0 0 0 2px rgba(202, 156, 94, 0.3);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.contact-form button[type="submit"]:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(202, 156, 94, 0.3);
}

.contact-form button[type="submit"]:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Error States */
.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--color-accent);
}

/* Form Messages */
.error-message {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 4px;
  display: block;
  transition: all 0.3s ease;
}

.success-message {
  color: var(--color-success);
  font-size: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 4px;
  text-align: center;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success Message */
.form-success-message {
  display: none;
  background-color: var(--color-success);
  color: white;
  padding: 12px;
  border-radius: 4px;
  margin-top: 1rem;
  text-align: center;
}
.form-success-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-success-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.error {
  border-color: var(--color-accent) !important;
}
.form-success-message.show {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 6rem 20px;
  line-height: 1.6;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Add dotted lines between sections */
.footer-logo,
.footer-links,
.footer-right {
  position: relative;
  padding: 0 40px;
}

.footer-logo::after,
.footer-links::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 1px;
  background-image: radial-gradient(
    circle,
    var(--color-white) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  background-repeat: repeat-y;
  opacity: 0.3;
}

/* Logo Section */
.footer-logo {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
}

/* Navigation Links */
.footer-links {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer-links ul li a {
  color: var(--color-soft-white);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

/* Right Section - Social & Copyright */
.footer-right {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

.footer-bottom p {
  margin: 0;
  color: var(--color-soft-white);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-logo,
  .footer-links,
  .footer-right {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 20px;
  }

  /* Hide dotted lines on tablet and mobile */
  .footer-logo::after,
  .footer-links::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-logo,
  .footer-links,
  .footer-right {
    margin-bottom: 30px;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-social {
    margin-bottom: 20px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Hide dotted lines on mobile */
@media (max-width: 576px) {
  .footer-logo::after,
  .footer-links::after {
    display: none;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-container {
    padding: 0.5rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 100px;
    flex-direction: column;
    background: var(--color-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    z-index: 1000;
    gap: 1.5rem;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    margin-left: auto;
    margin-right: 1rem;
  }

  .social-links {
    margin-left: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

.contact-form button[type="submit"]:hover {
  background-color: var(--color-accent);
}

.contact-form button[type="submit"]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Error States */
.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--color-accent);
}

.error-message {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

/* Success Message */
.form-success-message {
  display: none;
  background-color: var(--color-success);
  color: var(--color-white);
  padding: 12px;
  border-radius: 4px;
  margin-top: 1rem;
  text-align: center;
}

.form-success-message.show {
  display: block;
}
