/* JaksAndFucks.com - Modern SEO-Optimized Website Styles */

/* CSS Variables for Theme */
:root {
  --primary-color: #ff6b6b;
  --secondary-color: #8e44ad;
  --tertiary-color: #e056fd;
  --accent-color: #ff9ff3;
  --dark-color: #2d3436;
  --light-color: #f9f9f9;
  --grey-color: #dfe6e9;
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 10px;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: var(--body-font);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 5.5rem;
  letter-spacing: -1px;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

h2 {
  font-size: 4rem;
  position: relative;
  margin-bottom: 3.5rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 8rem;
  height: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 2rem;
}

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

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 8rem;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.5rem 3.5rem;
  border-radius: 5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover {
  color: white;
  box-shadow: 0 15px 25px rgba(142, 68, 173, 0.5);
  transform: translateY(-5px);
}

.btn:hover:before {
  width: 100%;
}

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

.btn-outline:before {
  background: var(--primary-color);
}

.btn-outline:hover {
  color: white;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 2rem 0;
}

.header.scrolled {
  padding: 1rem 0;
}

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

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

.logo img {
  height: 5rem;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 4rem;
}

.logo-text {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

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

.nav-link {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(224, 86, 253, 0.1), rgba(255, 107, 107, 0.05));
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero:before {
  content: '';
  position: absolute;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 86, 253, 0.08), rgba(255, 107, 107, 0.05));
  top: -40rem;
  right: -40rem;
}

.hero:after {
  content: '';
  position: absolute;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08), rgba(224, 86, 253, 0.05));
  bottom: -30rem;
  left: -30rem;
}

.hero-content {
  max-width: 60%;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.hero-title {
  margin-bottom: 3rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  max-width: 90%;
}

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

.hero-image {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 50rem;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 4rem 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(142, 68, 173, 0.05));
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
}

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

.feature-icon {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(142, 68, 173, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.feature-icon i {
  font-size: 3.2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/* About Section */
.about {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about:before {
  content: '';
  position: absolute;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.05), rgba(142, 68, 173, 0.05));
  top: -25rem;
  left: -25rem;
  z-index: 0;
}

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2:after {
  left: 0;
  transform: none;
}

.about-content ul {
  list-style: none;
  margin: 2rem 0 3rem;
}

.about-content li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.about-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Entertainment Section */
.entertainment {
  background-color: white;
  position: relative;
}

.entertainment:after {
  content: '';
  position: absolute;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 68, 173, 0.05), rgba(255, 107, 107, 0.05));
  bottom: -25rem;
  right: -25rem;
  z-index: 0;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.link-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.link-card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.link-card:hover:before {
  transform: scaleX(1);
}

.link-card a {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--dark-color);
  transition: var(--transition);
}

.link-card a:hover {
  color: var(--primary-color);
}

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

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 2rem;
}

.contact-icon {
  width: 6rem;
  height: 6rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.contact-icon i {
  font-size: 2.4rem;
  color: var(--primary-color);
}

.contact-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.contact-form {
  background: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-control {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid var(--grey-color);
  border-radius: 5px;
  font-family: var(--body-font);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

textarea.form-control {
  min-height: 15rem;
  resize: vertical;
}

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

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

.footer-about img {
  height: 5rem;
  width: auto;
  margin-bottom: 2rem;
}

.footer h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.footer h3:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 4rem;
  height: 2px;
  background: var(--primary-color);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-link {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-contact i {
  color: var(--primary-color);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  text-align: center;
  font-size: 1.4rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  html {
    font-size: 58%;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 2rem;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 4.5rem;
  }
  
  h2 {
    font-size: 3.5rem;
  }
  
  .section {
    padding: 8rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    order: 1;
    text-align: center;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-content ul {
    display: inline-block;
    text-align: left;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 5rem 0;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 2rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .links-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 3.8rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .section-title {
    margin-bottom: 5rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
