/* Global Styles */
:root {
  --primary-color: #39ff14; /* Billie Eilish's signature neon green */
  --secondary-color: #111111;
  --accent-color: #9c27b0;
  --background: #000000;
  --card-bg: #121212;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --font-main: 'Montserrat', sans-serif;
  --shadow: 0 4px 30px rgba(57, 255, 20, 0.3);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Background Effect */
.background-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.05);
  animation: float 20s infinite ease-in-out;
}

.bubble1 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  animation-delay: 0s;
}

.bubble2 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: rgba(156, 39, 176, 0.05);
  animation-delay: 5s;
}

.bubble3 {
  width: 300px;
  height: 300px;
  bottom: 200px;
  right: 200px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-50px) translateX(20px) scale(1.05);
  }
}

/* Header Styles */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.1);
  transition: all 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: var(--primary-color);
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.brand h1 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  opacity: 1;
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px var(--primary-color);
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-color);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 8px;
}

.menu-toggle span:nth-child(2) {
  top: 16px;
}

.menu-toggle span:nth-child(3) {
  top: 24px;
}

.menu-toggle.active span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accent {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.6);
}

.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.blob-svg {
  width: 100%;
  height: auto;
  color: rgba(57, 255, 20, 0.15);
  filter: blur(5px);
  animation: pulse 5s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    color: rgba(57, 255, 20, 0.15);
  }
  100% {
    transform: scale(1.05);
    color: rgba(156, 39, 176, 0.15);
  }
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-color);
}

/* Gallery Section */
.gallery {
  background-color: var(--card-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.gallery-item {
  background: rgba(18, 18, 18, 0.5);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.gallery-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.gallery-item h3 {
  font-size: 1.5rem;
}

.featured-content {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cpath fill='%2339ff14' fill-opacity='0.05' d='M0 0L50 20L100 0L100 60L50 40L0 60Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
}

.preview-text {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.overlay-button {
  width: 80px;
  height: 80px;
  background: rgba(57, 255, 20, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.overlay-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.overlay-button svg {
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  margin-left: 5px;
}

/* Features Section */
.features {
  background-color: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature p {
  color: var(--text-secondary);
}

/* Access Section */
.access {
  background: linear-gradient(to right, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)), 
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1000 1000'%3E%3Cpath fill='%2339ff14' fill-opacity='0.05' d='M0,0 L1000,0 L1000,1000 L500,800 L0,1000 Z'/%3E%3C/svg%3E");
  background-size: cover;
  text-align: center;
}

.access-content {
  max-width: 800px;
  margin: 0 auto;
}

.access h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.access p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 40px 0;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--primary-color);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--card-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  nav ul.active {
    right: 0;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero-image {
    order: -1;
  }
}

@media screen and (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .button {
    padding: 12px 25px;
  }
  
  .featured-content {
    height: 200px;
  }
  
  .preview-text {
    font-size: 1.2rem;
  }
}
