/*
 * taylorswiftaiporn.site - Main Stylesheet
 * Green and gold music-inspired theme
 */

:root {
  /* Primary color palette - green and gold music theme */
  --primary-green: #1DB954; /* Spotify-inspired green */
  --primary-gold: #DAA520; /* Gold accent */
  --secondary-green: #169c46;
  --secondary-gold: #b78c1b;
  --text-dark: #222222;
  --text-light: #666666;
  --background: #FFFFFF;
  --background-alt: #F8F9F7;
  --container-width: 1200px;
  --border-radius: 8px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background);
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 10px rgba(29, 185, 84, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(29, 185, 84, 0.35);
}

.btn-primary.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-green);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-green);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: rgba(29, 185, 84, 0.1);
}

/* Animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

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

.logo h1 {
  margin-bottom: 0;
  margin-left: 0.75rem;
  font-size: 1.5rem;
  background: linear-gradient(45deg, var(--primary-green), var(--primary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  flex-shrink: 0;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-menu a {
  color: var(--text-dark);
  position: relative;
  font-weight: 500;
}

.nav-menu a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-green), var(--primary-gold));
  transition: width 0.3s ease;
}

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

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

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  padding: 5rem 0 0;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, rgba(218, 165, 32, 0.05) 100%);
  position: relative;
}

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

.hero-content {
  flex: 1;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

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

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

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

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-green), var(--primary-gold));
  margin: 0.8rem auto 0;
  border-radius: 3px;
}

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

.feature-card {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  margin: 0 auto 1.5rem;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background-color: var(--background-alt);
}

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

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item h3 {
  padding: 1rem;
  text-align: center;
}

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

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
}

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

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

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

/* Footer */
.site-footer {
  background: #222;
  color: white;
  padding: 4rem 0 1.5rem;
}

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

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

.footer-text h3 {
  margin-bottom: 0.5rem;
}

.footer-text p {
  color: #BBB;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-green), var(--primary-gold));
  margin-top: 0.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: #BBB;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

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

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background: white;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 15px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
}
