* {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #0d1117;
  color: #222;
}
.navbar {
  background: linear-gradient(90deg, #ff6f61 0%, #f9d423 100%);
  border-bottom: 4px solid #222;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 24px #ff6f6133;
  padding: 18px 0;
  transition: background 0.3s;
}
.navbar-brand {
  font-family: "Bungee", cursive;
  font-size: 2.2rem;
  color: #fff !important;
  letter-spacing: 2px;
  text-shadow: 2px 4px 12px #ff6f61cc, 0 2px 8px #f9d42399;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(34, 34, 34, 0.12);
  transition: background 0.2s;
}
.navbar-brand:hover {
  background: #fff3;
  color: #222 !important;
}
.navbar-toggler {
  border: 2px solid #fff;
  border-radius: 12px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,111,97,1%29' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-nav .nav-link {
  font-family: "Bungee", cursive;
  color: #fff !important;
  font-size: 1.1rem;
  margin: 0 10px;
  padding: 10px 22px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-shadow: 1px 2px 8px #ff6f6199;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: #222;
  color: #f9d423 !important;
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 2px 12px #2226;
}
#hero-funky {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff6f61 0%, #f9d423 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.funky-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 30px 80px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 2px solid #fff3;
  max-width: 600px;
  margin: auto;
}
.funky-logo {
  margin-bottom: 24px;
  animation: funky-bounce 2s infinite;
}
@keyframes funky-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.funky-hero-title {
  font-family: "Bungee", cursive;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-shadow: 2px 4px 12px #ff6f61cc;
}
.funky-hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  color: #222;
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 1px 2px 8px #fff7;
}
.funky-cta-btn,
.btn-custom {
  font-family: "Bungee", cursive;
  font-size: 1.2rem;
  background: #222;
  color: #f9d423;
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  box-shadow: 0 4px 24px #ff6f6177;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
}
.funky-cta-btn:hover,
.btn-custom:hover {
  background: #f9d423;
  color: #ff6f61;
  transform: scale(1.07) rotate(-2deg);
}
.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-box {
  background: #1f252e;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}
.feature-box:hover {
  background: #2a313a;
  transform: scale(1.05);
}
.feature-box h4 {
  color: #f39c12;
  margin-top: 15px;
}

#contact {
  background: linear-gradient(120deg, #f9d423 0%, #ff6f61 100%);
  padding: 90px 0 70px 0;
}
.contact-section-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.13);
  padding: 56px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.contact-info-modern {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px #2222;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}
.contact-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px #ff6f6133;
}
.contact-card-icon {
  font-size: 2.4rem;
  color: #ff6f61;
  background: linear-gradient(135deg, #f9d42333 0%, #ff6f6133 100%);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #ff6f6122;
}
.contact-card-content h4 {
  margin: 0 0 4px 0;
  font-family: "Bungee", cursive;
  color: #222;
  font-size: 1.18rem;
  letter-spacing: 1px;
}
.contact-card-content p {
  margin: 0;
  color: #444;
  font-size: 1.08rem;
  word-break: break-word;
}
.contact-form-modern {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px #2222;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s;
}
.contact-form-modern:focus-within {
  box-shadow: 0 12px 36px #f9d42344;
}
.contact-form-modern h4 {
  font-family: "Bungee", cursive;
  color: #222;
  font-size: 1.22rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.contact-form-modern input,
.contact-form-modern textarea {
  border-radius: 10px;
  border: 1.5px solid #f9d42388;
  padding: 12px 14px;
  font-size: 1.05rem;
  margin-bottom: 8px;
  width: 100%;
  background: #f9f9f9;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px #ff6f6111;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border: 2px solid #ff6f61;
  outline: none;
  box-shadow: 0 2px 8px #ff6f6133;
}
.contact-form-modern button {
  background: linear-gradient(90deg, #ff6f61 0%, #f9d423 100%);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 0;
  font-family: "Bungee", cursive;
  font-size: 1.13rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 2px 8px #f9d42344;
}
.contact-form-modern button:hover {
  background: linear-gradient(90deg, #f9d423 0%, #ff6f61 100%);
  color: #222;
  box-shadow: 0 6px 18px #ff6f6133;
}
.contact-map-modern {
  margin-top: 40px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px #2222;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.18s;
}
.contact-map-modern:hover {
  box-shadow: 0 12px 36px #f9d42333;
}
@media (max-width: 900px) {
  .contact-section-container {
    flex-direction: column;
    padding: 32px 10px;
    gap: 24px;
  }
  .contact-map-modern {
    margin-top: 28px;
  }
}
@media (max-width: 600px) {
  #contact {
    padding: 50px 0 40px 0;
  }
  .contact-section-container {
    padding: 14px 2px;
    gap: 14px;
  }
  .contact-form-modern {
    padding: 12px 4px;
  }
  .contact-map-modern {
    margin-top: 18px;
  }
}

/* Funky background shapes */
.funky-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 1;
  filter: blur(4px);
}
.funky-bg1 {
  width: 400px;
  height: 400px;
  background: #fff;
  left: -120px;
  top: -80px;
}
.funky-bg2 {
  width: 300px;
  height: 300px;
  background: #222;
  right: -100px;
  bottom: -60px;
}
.funky-bg3 {
  width: 180px;
  height: 180px;
  background: #f9d423;
  left: 60px;
  bottom: 40px;
}

/* Modern Footer Styles */
.footer {
  background: linear-gradient(90deg, #ff6f61 0%, #f9d423 100%);
  padding: 0;
  border-top: none;
  margin-top: 0;
}
.footer-modern-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 38px;
  padding-bottom: 28px;
}
.footer-brand-social {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name {
  font-family: "Bungee", cursive;
  font-size: 1.6rem;
  color: #222;
  letter-spacing: 2px;
  text-shadow: 1px 2px 8px #fff7;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: 0 2px 8px #ff6f6133;
  transition: background 0.18s, transform 0.18s;
}
.footer-social a:hover {
  background: #ff6f61;
  transform: scale(1.08) rotate(-4deg);
}
.footer-social a svg {
  display: block;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links li {
  display: inline;
}
.footer-links a {
  color: #222;
  font-family: "Bungee", cursive;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.footer-links a:hover {
  background: #222;
  color: #f9d423;
}
.footer-copyright {
  color: #222;
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.85;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 600px) {
  .footer-modern-container {
    padding: 0 6px;
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 16px;
  }
  .footer-brand-name {
    font-size: 1.1rem;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-social a {
    width: 34px;
    height: 34px;
  }
}
