/*
* gayaiporn.site - Main Stylesheet
* Modern, responsive design with purple/teal gradient theme
* Unique design different from previous sites
*/

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

:root {
  /* Primary color palette - purple/teal gradient (different from previous sites) */
  --primary-dark: #6A0DAD;
  --primary-light: #00C9A7;
  --accent: #FFA52C;
  --dark: #333333;
  --light: #ffffff;
  --background: #F8F9FA;
  --text: #333333;
  --text-light: #666666;
  --gradient: linear-gradient(120deg, var(--primary-dark), var(--primary-light));
  --shadow: 0 8px 30px rgba(106, 13, 173, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
}

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

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

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
}

section {
  padding: 5rem 0;
}

/* Button Styles - Unique from other sites */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn.primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

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

.btn.secondary:hover {
  background: rgba(106, 13, 173, 0.1);
}

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

/* Header Styles - Different layout */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  height: 80px;
}

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

.logo-icon {
  height: 40px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Menu - Unique style */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

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

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Hero Section - Unique design from other sites */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(106, 13, 173, 0.05) 0%, rgba(0, 201, 167, 0.05) 100%);
  overflow: hidden;
}

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

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 3rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 1.5rem;
}

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

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.feature-card {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(106, 13, 173, 0.15);
}

.feature-card svg {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

/* How It Works Section - Unique layout */
.how-it-works {
  background: linear-gradient(180deg, white 0%, var(--background) 100%);
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 300px;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  z-index: -1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step p {
  color: var(--text-light);
}

/* Gallery Section */
.gallery {
  background: white;
}

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

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(106, 13, 173, 0.2);
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section - Unique style */
.cta-section {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-section .btn.primary {
  background: white;
  color: var(--primary-dark);
  margin-top: 1rem;
}

.cta-section .btn.primary:hover {
  box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

/* Footer - Different style from other sites */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

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

.site-info {
  display: flex;
  flex-direction: column;
}

.site-name {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    z-index: 101;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: 0.3s ease;
    z-index: 100;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  #menu-toggle:checked ~ .nav-menu {
    right: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text h2 {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
