/* 
* pornaiimage.love - Main Stylesheet
* Features a modern red color scheme with dark theme
* Fully responsive design with mobile-first approach
*/

/* ---------- Variables ---------- */
:root {
  --primary: #FF5252;
  --primary-dark: #FF1744;
  --primary-light: #FF8A80;
  --secondary: #212121;
  --secondary-light: #484848;
  --dark: #121212;
  --dark-50: rgba(18, 18, 18, 0.5);
  --dark-70: rgba(18, 18, 18, 0.7);
  --white: #ffffff;
  --grey: #9e9e9e;
  --light-grey: #e0e0e0;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 30px rgba(255, 23, 68, 0.2);
}

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

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

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

section {
  padding: 80px 0;
}

/* ---------- Typography ---------- */
h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

/* ---------- Buttons ---------- */
.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.primary-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
}

.primary-btn:hover:before {
  left: 100%;
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
}

.grid-btn {
  display: inline-block;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.grid-btn:hover {
  background-color: var(--primary);
}

/* Animation for pulsating button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 23, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

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

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

.logo-icon {
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
}

.nav-links a:not(.cta-btn):after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:not(.cta-btn):hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--secondary);
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  /* X animation for menu toggle */
  .menu-toggle span.active:nth-child(1) {
    transform: rotate(45deg) translate(5px, 9px);
  }
  
  .menu-toggle span.active:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle span.active:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -10px);
  }
}

/* ---------- Hero Section ---------- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
  background-image: radial-gradient(circle at top right, var(--secondary-light), transparent);
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
}

.shape-1 {
  top: 20%;
  right: 20%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

/* ---------- Gallery Section ---------- */
.gallery {
  background-color: var(--dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

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

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

.grid-svg {
  width: 100%;
  height: auto;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.grid-item:hover .grid-overlay {
  opacity: 1;
}

.grid-overlay h3 {
  margin-bottom: 15px;
  text-align: center;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

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

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text h3:first-child {
  margin-top: 0;
}

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

.about-graphic {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .about-visual {
    width: 100%;
  }
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-content .primary-btn {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-content .primary-btn:hover {
  background: var(--light-grey);
}

/* ---------- Footer ---------- */
footer {
  background-color: var(--secondary);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-branding p {
  margin-top: 20px;
  opacity: 0.7;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

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

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
