/* 
   aipornpictures.pw Styles
   Unique amber/copper/brown design different from previous sites
*/

:root {
  --primary: #FF9F43;      /* Amber - main brand color */
  --secondary: #D35400;    /* Burnt orange - darker accent */
  --accent: #20BF6B;       /* Green - for highlights only */
  --dark: #1A1A2E;         /* Dark navy background */
  --darker: #0F0F1B;       /* Darker navy for contrast areas */
  --light: #ffffff;
  --gray: #C8D6E5;
  --light-bg: rgba(255, 159, 67, 0.05);
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --box-shadow: 0 8px 30px rgba(255, 159, 67, 0.2);
  --border-radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.accent {
  color: var(--primary);
  font-weight: 700;
}

/* Header Styles */
header {
  background-color: rgba(15, 15, 27, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-domain {
  opacity: 0.7;
  font-weight: 400;
  color: var(--gray);
}

.main-nav {
  position: relative;
}

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

.nav-menu li a {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  color: var(--gray);
  transition: color 0.3s ease;
}

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

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

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

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 12rem 0 8rem;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 159, 67, 0.1) 0%, rgba(15, 15, 27, 0) 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--darker);
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 4px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--gray);
  font-size: 1.1rem;
}

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

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

/* Features Section */
.features-section {
  padding: 8rem 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Technology Section */
.technology-section {
  padding: 8rem 0;
  background-color: var(--darker);
  position: relative;
}

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

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background-color: var(--dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.1), rgba(211, 84, 0, 0.1));
  text-align: center;
}

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

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  font-size: 1.1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.primary-btn {
  background: var(--gradient);
  color: var(--light);
  border: none;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
}

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

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

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

/* Footer Styles */
footer {
  background-color: var(--darker);
  padding: 5rem 0 2rem;
  position: relative;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

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

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-brand p {
  color: var(--gray);
  max-width: 400px;
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: var(--gray);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

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

.disclaimer {
  color: #576574;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.copyright {
  color: #485460;
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
  }
  
  .nav-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background-color: var(--dark);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;
  }
  
  #menu-toggle:checked ~ .nav-menu {
    max-height: 300px;
    opacity: 1;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: block;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu li a::after {
    display: none;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    margin: 0 auto 2.5rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 3rem;
  }
  
  .features-container,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 10rem;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}
