/*
 * myimgai.love - Main Stylesheet
 * Features modern blue gradient design with hexagon elements
 */

:root {
  --primary: #3a7bd5;
  --primary-light: #00d2ff;
  --primary-dark: #172b4d;
  --accent: #00d2ff;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f5f9ff;
  --bg-dark: #172b4d;
  --header-height: 80px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

p {
  margin-bottom: 20px;
}

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

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

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-dark);
}

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

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

.nav-list {
  display: flex;
  gap: 20px;
}

.nav-list a {
  color: var(--primary-dark);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.nav-list .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
}

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

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

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

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  top: 18px;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 50px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

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

.hero-cta {
  display: flex;
  gap: 15px;
}

.btn-primary, .btn-secondary, .btn-cta, .btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.btn-primary:hover, .btn-cta:hover, .btn-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(58, 123, 213, 0.6);
}

.btn-secondary:hover {
  background: rgba(58, 123, 213, 0.1);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.hex-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hex {
  animation: pulse 4s infinite alternate;
}

.central-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eye-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%/70%;
  border: 6px solid var(--primary);
}

.eye-iris {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
}

.eye-pupil {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary-dark);
  border-radius: 50%;
}

.eye-reflection {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--primary);
}

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

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #f5f9ff 0%, #e1effe 100%);
}

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

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

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

.gallery-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.gallery-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.tech-showcase {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

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

/* Access Section */
.access {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  text-align: center;
}

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

.access-content h2 {
  color: white;
}

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

.access-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.access-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 50px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

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

.footer-logo p {
  margin-top: 10px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  text-align: right;
}

.copyright p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-container, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visual, .about-visual {
    order: -1;
  }
  
  .hero-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding-top: var(--header-height);
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-logo, .footer-links, .copyright {
    text-align: center;
    align-items: center;
  }
  
  .footer-links ul {
    justify-content: center;
  }
  
  .copyright {
    text-align: center;
  }
  
  .features-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-primary, .btn-secondary, .btn-cta {
    width: 100%;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
}
