/* Contact form */

.contact-section {
  padding: 80px 0;
  background-color: #111;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

.contact-info {
  flex: 1;
}

.info-card {
  background: #1a1a1a;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  border: 1px solid #333;
}

.image-wrapper {
  height: 250px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%) contrast(110%);
}

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

.info-content {
  padding: 30px;
}

.info-content h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 700;
  letter-spacing: 1px;
}

.info-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--secondary-color);
}

.info-item p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.contact-form {
  flex: 1;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: "Cinzel Decorative", cursive;
  font-weight: 700;
  letter-spacing: 1px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #222;
  color: #eee;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 224, 86, 0.1);
  background: #252525;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.submit-btn {
  background: var(--secondary-color);
  color: #111;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Cinzel Decorative", cursive;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #ffea7d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253, 224, 86, 0.4);
}

/* Form error */
form#contactForm small.err {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: var(--error-color);
  min-height: 16px;
}

/* Feedback message after submit */
#formMsg {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-block;
  font-weight: 500;
}

#formMsg.success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid #28a745;
}

#formMsg.error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid #e74c3c;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .info-card,
  .contact-form {
    border-radius: 20px !important;
  }
}

/* Map section */

.map-section {
  margin-bottom: 20px;
  margin-top: 50px;
}

.map-section h2 {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2.5rem;
  color: white;
  text-align: center;
}

.map-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.map-section h2::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

@media (max-width: 480px) {
  .map-section {
    width: 90%;
    margin: 0 auto 30px auto;
    margin-top: 30px;
  }
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: var(--secondary-color);
  padding: 80px 0 0;
  margin-top: 100px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.decorative-image {
  position: absolute;
  width: 200px;
  height: 300px;
  opacity: 0.1;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.decorative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(100%) hue-rotate(35deg) saturate(2);
}

.left-image {
  top: 50px;
  left: -100px;
  transform: rotate(-15deg);
  animation: float-left 6s ease-in-out infinite;
}

.right-image {
  top: 100px;
  right: -100px;
  transform: rotate(15deg);
  animation: float-right 6s ease-in-out infinite reverse;
}

@keyframes float-left {
  0%,
  100% {
    transform: rotate(-15deg) translateY(0px);
  }
  50% {
    transform: rotate(-15deg) translateY(-20px);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: rotate(15deg) translateY(0px);
  }
  50% {
    transform: rotate(15deg) translateY(-20px);
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(253, 224, 86, 0.1);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(253, 224, 86, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(253, 224, 86, 0.2);
}

.footer-logo img {
  max-width: 80px;
  max-height: 80px;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.visit-us-label {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  font-family: "Cinzel Decorative", cursive;
}

.visit-us-label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.address-info {
  text-align: center;
  line-height: 2;
}

.address-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.address-info p:hover {
  color: var(--secondary-color);
}

.divider {
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(253, 224, 86, 0.3),
    var(--secondary-color),
    rgba(253, 224, 86, 0.3),
    transparent
  );
  align-self: stretch;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.divider::before {
  top: 0;
}

.divider::after {
  bottom: 0;
}

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

.newsletter-section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: "Cinzel Decorative", cursive;
}

.newsletter-subtitle {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.email-input {
  padding: 15px 20px;
  border: 2px solid rgba(253, 224, 86, 0.3);
  background: rgba(253, 224, 86, 0.1);
  border-radius: 50px;
  color: var(--secondary-color);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: rgba(253, 224, 86, 0.6);
}

.email-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(253, 224, 86, 0.2);
  background: rgba(253, 224, 86, 0.15);
}

.subscribe-btn {
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--secondary-color), #f9d71c);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(253, 224, 86, 0.4);
}

.subscribe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.subscribe-btn:hover::before {
  left: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(253, 224, 86, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(253, 224, 86, 0.7);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(253, 224, 86, 0.1);
  border: 2px solid rgba(253, 224, 86, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color), #f9d71c);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: #000;
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.credits {
  color: rgba(253, 224, 86, 0.7);
  font-size: 0.9rem;
}

.credits a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.credits a:hover {
  color: #f9d71c;
  text-shadow: 0 0 5px rgba(253, 224, 86, 0.5);
}

@media (max-width: 1024px) {
  .decorative-image {
    width: 150px;
    height: 200px;
  }

  .left-image {
    left: -75px;
  }

  .right-image {
    right: -75px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(253, 224, 86, 0.3),
      var(--secondary-color),
      rgba(253, 224, 86, 0.3),
      transparent
    );
  }

  .divider::before,
  .divider::after {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .divider::before {
    left: 0;
  }

  .divider::after {
    left: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .decorative-image {
    display: none;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 100%;
  }

  .email-input {
    flex: 1;
  }
}

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

  .footer-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
  }

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

  .visit-us-label {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

#successMessage {
  display: none;
  color: #000;
  background-color: #fff9c4;
  border: 1px solid #ffec3d;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  box-shadow: 0 0 15px rgba(255, 236, 61, 0.6);
  transition: all 0.3s ease;
}
