@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Modern Color Palette */
  --primary-bg: #0a0a0f;
  --secondary-bg: #1a1a2e;
  --card-bg: rgba(255, 255, 255, 0.05);
  --accent-primary: #667eea;
  --accent-secondary: #764ba2;
  --accent-tertiary: #f093fb;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-accent: #667eea;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ffffff 0%, #9346e1 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
}

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

html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--primary-bg);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(240, 147, 251, 0.05) 0%,
      transparent 50%
    );
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  width: 55px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.navbar-logo a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: var(--text-primary);
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  transition: all 0.3s ease;
}

/* Navbar scroll effects */
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(25px);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Loading animation */
body:not(.loaded) * {
  animation-play-state: paused !important;
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.main-hero {
  position: relative;
  background: url(./images/hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem 0px;
}

.hero-content h1 {
  width: 20ch;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-content h1 {
    width: 100%;
  }
}

.hero-content a {
  text-decoration: none;
  color: blakc;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-content a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.hero-content a::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;
}

.hero-content a:hover::before {
  left: 100%;
}

/* Offers Section */
.main-offers {
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.main-offers h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.main-offers > p {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 1rem;
}

.offer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.offer-element {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.offer-element:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.offer-element:hover::before {
  transform: scaleX(1);
}

.offer-element-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.offer-full-w {
  grid-column: 1/-1;
}

.offer-element-content img {
  height: 150px;
  width: 150px;
  object-fit: contain;
  border-radius: 12px;
  padding: 5px;
  background-color: black;
  box-shadow: 0 4px 35px 0 rgba(128, 0, 255, 0.25);
}

.offer-element-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.offer-element-content p {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.offer-element-content a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  background: var(--gradient-secondary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.offer-element-content a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* About/Guide Section */
.main-about {
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--secondary-bg);
  position: relative;
}

.main-about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: justify;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

/* Footer */
.footer {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-color);
  padding: 3rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-images img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.7);
  border-radius: 8px;
}

.footer-images img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  background: var(--card-bg);
}

.footer-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 4%;
  }

  /* Show hamburger button on mobile */
  .hamburger-btn {
    display: flex;
  }

  /* Mobile navigation styles */
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-bg);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    margin: 0 1rem;
    transition: all 0.3s ease;
  }

  .navbar-links a:hover {
    background: var(--card-bg);
    transform: translateX(-5px);
  }

  .main-hero {
    padding: 2rem 4%;
    display: none;
  }

  .hero-content {
    padding: 2rem;
    gap: 1.5rem;
  }

  .main-offers {
    padding: 1rem 4%;
  }

  .offer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .main-about {
    padding: 1rem 4%;
  }

  .footer {
    padding: 2rem 4%;
  }

  .footer-images {
    gap: 1rem;
  }

  .footer-images img {
    height: 40px;
  }

  .footer-links {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .offer-element {
    padding: 1.5rem;
  }

  .about-container p {
    padding: 1rem;
    text-align: left;
  }
}
.dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
