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

:root {
  --yellow: #f9d829;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #fff;
  --border: #ddd;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--dark);
}

.logo img {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--yellow);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  transition: 0.3s;
  color: #1a1a1a !important;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 4% 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 350px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 2rem;
  transition: right 0.3s;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--yellow);
}

.close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
}

.mobile-links li {
  margin-bottom: 1.5rem;
}

.mobile-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

footer {
  background: var(--yellow);
  color: var(--dark);
  padding: 4rem 4% 1.5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

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

.footer-description {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.logo-script {
  font-family: "Brush Script MT", cursive;
  font-size: 1.3rem;
  font-style: italic;
  display: block;
  margin-top: 0.2rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--dark);
  font-size: 1rem;
  margin-top: 0.2rem;
  min-width: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--dark);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

.nav-active {
  text-decoration: underline !important;
  text-decoration-color: var(--dark) !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px !important;
  transition: color 0.3s;
}

.nav-active:hover {
  text-decoration-color: var(--yellow) !important;
  text-decoration-thickness: 2px !important;
  transition: color 0.3s;
}
