:root {
    --primary: #e46033;
    --outline:#f35a12;
    --darker-primary: #e13e0d;
    --white:#fff;
    --black:#0e0000;
    --btm-border: rgba(228, 96, 51, 0.35);
}
a {
    text-decoration: none;
    color: var(--black);
}
.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:0.5rem;
    padding: 20px;
    background-color: rgba(135, 134, 134, 0.15);
    backdrop-filter: blur(8px);
    color: var(--black);
    box-shadow: var(--primary) 0px 4px 12px;
}
.footer p {
    font-family: 'Helvetica Neue', sans-serif ;
    font-size: 20px ;
    opacity: 0.8;
}
.footer h2 {
    font-size: 35px ;
    font-style: oblique;
    font-weight: 900 ;
    fill: var(--primary);
    letter-spacing: 4px;
}
.footer button {
    margin-top: 20px;
    padding: 1rem;
    /* height: 45px; */
    height: auto;
    background: linear-gradient(to right, var(--primary), var(--outline));
    border: none;
    border-radius: 25px;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
}
.footer button:hover {
    transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--btm-border);
  background: linear-gradient(135deg, var(--primary) 0%, var(--outline) 100%);
}
.footer a:hover {
    color: var(--primary);
}
.footer hr {
    width: 700px;
    height: 0.5vh;
    background: linear-gradient(to right, var(--primary), var(--outline));
    border: none;
    background-color: var(--primary);
}
.fa-heart {
  color: var(--darker-primary);
  animation: pulse 1s infinite;
}

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

.arrow-container span {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
  margin: 5px auto;

  animation: arrowAnim 1.5s infinite;
}

.arrow-container span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-container span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes arrowAnim {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(-45deg);
    border-color: var(--black);
  }

  50% {
    opacity: 1;
    border-color: var(--white);
  }

  100% {
    opacity: 0;
    transform: translateY(20px) rotate(-45deg);
    border-color: var(--black);
  }
}
.fa-star{
    font-size: 1rem;
}
.foo-list {
    display: flex;
    gap: 20px;
    font-size: 20px;
    color: var(--outline);
}
.foo-list a:hover{
   font-size: 1.5rem;
  transition: all 0.4s ease;
}

.footer .contact{
    display: none;
    position: relative;
    width: 40%;
    height: 30vh;
    margin: 2rem 0 16rem 0;
}
 .box {
    background: var(--white);
    padding: 2rem;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px var(--primary); 
}
 .box h2 {
    margin-bottom: 1rem;
}

 .box input,
 .box textarea {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

 .box textarea {
    height: 100px;
    resize: none;
}
 .box textarea:focus,
 .box input:focus {
    outline: var(--primary) 2px solid;
    border-color: var(--primary);
    border-bottom-color: var(--primary);
    transform: scale(1.03);
}

 .footer .buttons {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 1rem;
    
}

 .clear-btn {
    background: #aaa;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all .3s ease;
}

 .submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

 .close{
   position: absolute;
  top: 5px;
  right: 1rem;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #710707;
  transition: 0.3s;
}

.close:hover {
  color: #f66505;
  transform: scale(1.3);
}
.custom-alert {
  padding: 0.75rem 1.25rem;
  margin:0 auto;
  border-radius: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/*  Success message */
.custom-alert.success {
  background-color: #4caf50;
  color: white;
}
/* Warning message */
 .custom-alert.warning {
  background: linear-gradient(to right, var(--primary), var(--outline));
  color: white;
} 
/* Danger / error message */
 .custom-alert.danger {
  background-color: #f44336;
  color: white;
} 

@media (max-width: 992px) {
  .footer hr {
    width: 80%;
  }

}
@media (max-width: 600px) {
  .footer hr {
    width: 90%;
  }
  .footer h2 {
    font-size: 28px;
  }
  .footer p {
    font-size: 16px;
  }
  .footer button {
    padding: 0.8rem;
    font-size: 14px;
  }
  .arrow-container span {
    width: 15px;
    height: 15px;
  }
  .fa-star {
      font-size: 0.9rem;
  }

  .foo-list {
      flex-direction: column;
      justify-content: center;
      align-items: center; 
       gap: 10px; 
      font-size: 18px;
  }

  .contact {
      width: 70%;
      height: auto;
      margin: 1rem auto 8rem auto;
  }

  .box {
      padding: 1.5rem;
      border-radius: 8px;
  }

  .box input,
  .box textarea {
      padding: 0.5rem;
  }

  .footer .buttons {
      flex-direction: column;
      gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .footer hr {
    width: 95%;
  }
  .footer h2 {
    font-size: 19px;
  }
  .footer p {
    font-size: 11px;
  }
  .footer button {
    padding: 0.8rem;
    font-size: 11px;
  }
  .arrow-container span {
    width: 10px;
    height: 10px;
  }
  .fa-star {
      font-size: 0.8rem;
  }

  .foo-list {
      font-size: 16px;
       flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .contact {
      width: 90%;
      margin: 1rem auto 6rem auto;
  }

  .box {
      padding: 1rem;
  }

  .box input,
  .box textarea {
      padding: 0.4rem;
  }

  .buttons {
      gap: 1rem;
  }

  .close {
      font-size: 1.8rem;
      top: 3px;
      right: 0.5rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  padding-left: 6rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.footer-logo:hover {
  transform: scale(1.2);
}
.footer-logo svg {
  width: auto;
  height: 60px;
  transition: all 0.3s ease;
}
.la-text {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  fill: var(--primary);
  letter-spacing: 3px;
  opacity: 0.8;
}

.delicia-text {
  font-family: 'Georgia', serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
  fill: var(--primary);
  letter-spacing: 4px;
}

.underline {
  stroke: url(#gold);
  stroke-width: 0.6;
  opacity: 0.3;
}

.tagline {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 9px;
  fill: #A07850;
  letter-spacing: 6px;
}