/* 
 * LameAss54 Website - Main Stylesheet
 * Sophisticated, minimalist design with SEO optimization
 */

:root {
  --primary-color: #6A11CB;
  --secondary-color: #2575FC;
  --dark-color: #1A1A2E;
  --light-color: #FFFFFF;
  --gray-color: #F5F5F5;
  --text-color: #333333;
  --accent-color: #4CD964;
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --border-radius: 12px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: 3.25rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #666;
}

.text-center {
  text-align: center;
}

.bg-gradient {
  background: var(--gradient);
  color: var(--light-color);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--gradient);
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(106, 17, 203, 0.3);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo img {
  height: 45px;
  margin-right: 1rem;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.scrolled .logo-text {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

.nav {
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2.5rem;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(106, 17, 203, 0.1), transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(37, 117, 252, 0.1), transparent 40%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-subtitle {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #666;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 3rem 2rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  margin-bottom: 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: var(--light-color);
  font-size: 2rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: #666;
}

/* Entertainment Section */
.entertainment {
  background-color: var(--gray-color);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.entertainment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(106, 17, 203, 0.05), transparent 50%);
  z-index: 1;
}

.entertainment-container {
  position: relative;
  z-index: 2;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.link-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient);
  transition: var(--transition);
  z-index: -1;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.link-card:hover::before {
  height: 100%;
}

.link-card a {
  display: block;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
  padding-left: 1.8rem;
}

.link-card a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.link-card a:hover {
  color: var(--primary-color);
  padding-left: 2.2rem;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  background-color: var(--gray-color);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--gray-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 3rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient);
  opacity: 0.05;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-color);
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: var(--light-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.contact-form {
  padding: 3rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  margin-right: 1.5rem;
  color: var(--light-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  margin-bottom: 0.5rem;
}

.contact-info-text p {
  margin-bottom: 0;
  color: #666;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-color);
  border-radius: 50%;
  color: var(--dark-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient);
  color: var(--light-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-about p {
  margin-bottom: 2rem;
}

.footer-heading {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--light-color);
  padding-left: 20px;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 1rem;
  padding-right: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: var(--light-color);
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: transparent;
  border: none;
  color: var(--light-color);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  color: var(--secondary-color);
}

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

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--secondary-color);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate {
  opacity: 0;
}

.animate.fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate.slide-left {
  animation: slideInLeft 1s ease forwards;
}

.animate.slide-right {
  animation: slideInRight 1s ease forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-600 {
  animation-delay: 0.6s;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .container {
    max-width: 90%;
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 1;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .link-grid {
    grid-template-columns: 1fr;
  }
}
