/* 
 * Main stylesheet for scarlettjohanssonaiporn.love
 * Modern, responsive design with orange/red gradient theme
 */

/* Base styles and CSS reset */
:root {
  --primary-color: #ff5f6d;
  --secondary-color: #ffc371;
  --accent-color: #ff9a8b;
  --light-accent: #fff3e6;
  --dark-bg: #2d2b3a;
  --darker-bg: #1a1921;
  --light-bg: #3d3b4a;
  --light-text: #ffffff;
  --dark-text: #333333;
  --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

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

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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--darker-bg);
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Abril Fatface', serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  color: var(--light-text);
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

h4 {
  font-size: 1.4rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

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

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

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

/* Header styles */
header {
  background-color: rgba(45, 43, 58, 0.95);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo {
  height: auto;
}

/* Navigation */
.site-navigation {
  display: flex;
}

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

.menu li {
  margin-left: 2.5rem;
}

.menu li a {
  color: var(--light-text);
  font-weight: 700;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Mobile menu toggle */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.header-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
  padding: 10rem 0 6rem;
  background: linear-gradient(to right, var(--darker-bg), var(--dark-bg));
  position: relative;
  overflow: hidden;
}

.hero-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.hero-visual svg {
  max-width: 100%;
  height: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: var(--light-text);
  box-shadow: var(--box-shadow);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: var(--light-text);
}

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

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--darker-bg);
}

/* Content sections */
.content-section {
  padding: 6rem 0;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Showcase Section */
.showcase {
  background-color: var(--dark-bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 4rem;
}

.showcase-item {
  background-color: var(--darker-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.showcase-item:hover {
  transform: translateY(-10px);
}

.showcase-visual {
  width: 100%;
  height: auto;
}

.showcase-content {
  padding: 2rem;
}

.showcase-content h3 {
  margin-top: 0;
}

.btn-text {
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.btn-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

/* Collection Section */
.collection {
  background: var(--darker-bg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.collection-item {
  background-color: var(--dark-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.collection-visual {
  width: 100%;
  height: auto;
}

.collection-item h4 {
  padding: 1.5rem;
  text-align: center;
}

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

/* Premium Section */
.premium {
  background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
}

.premium-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.premium-content h2 {
  margin-bottom: 1.5rem;
}

.premium-features {
  list-style: none;
  margin: 2rem 0;
}

.premium-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.premium-features .feature-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.premium-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-visual svg {
  max-width: 100%;
  height: auto;
}

.btn-premium {
  background: var(--gradient);
  color: var(--light-text);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--box-shadow);
  display: inline-block;
  transition: var(--transition);
}

.btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: var(--light-text);
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 5rem 0 2rem;
  margin-top: auto;
}

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

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.footer-branding p {
  font-weight: 700;
  color: var(--accent-color);
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

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

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

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

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

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

.footer-disclaimer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-banner .container,
  .premium-wrapper {
    grid-template-columns: 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .premium-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .header-menu-toggle {
    display: flex;
  }
  
  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    opacity: 0;
  }
  
  .site-navigation.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  
  .menu {
    flex-direction: column;
    align-items: center;
  }
  
  .menu li {
    margin: 1rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-branding,
  .footer-links {
    text-align: center;
  }
  
  .footer-branding {
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-content {
    padding: 1.5rem;
  }
}
