@font-face {
  font-family: 'Chunko Bold';
  src: url('../assets/fonts/chunko-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BREAD TOAST';
  src: url('../assets/fonts/BREAD TOAST.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy-Bold';
  src: url('../assets/fonts/Gilroy-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #688cea;
  --primary-dark: #5a7bd4;
  --primary-light: #8fabef;
  --cream-bg: #fefefe;
  --text-dark: #2d3748;
  --text-light: #718096;
  --footer-bg: #1a202c;
  --accent-orange: #ff8c42;
  --accent-green: #4ecdc4;
  --accent-pink: #ff6b9d;
  --card-bg: #ffffff;
  --shadow-soft: 0 4px 20px rgba(104, 140, 234, 0.1);
  --shadow-medium: 0 8px 30px rgba(104, 140, 234, 0.15);
  --shadow-strong: 0 12px 40px rgba(104, 140, 234, 0.2);
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Gilroy-Bold', 'Inter', sans-serif;
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(104, 140, 234, 0.1);
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.top-bar.scrolled {
  background: rgba(254, 254, 254, 0.98);
  box-shadow: var(--shadow-soft);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Chunko Bold', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.app-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.app-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.app-button:hover::before {
  left: 100%;
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(104, 140, 234, 0.4);
}

/* Hero Band */
.hero-band {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: 'Chunko Bold', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Decorative Elements */
.hero-band::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--cream-bg);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.flat-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-orange) 50%, var(--accent-pink) 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(104, 140, 234, 0.4);
}

.copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Media queries */
@media (max-width: 768px) {
  .logo {
    font-size: 2.8rem;
  }
  
  .app-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .top-bar .container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  .app-button {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .hero-band {
    padding: 2rem 1rem;
  }
  
  .footer-links {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
}