/* Main CSS for aixxx.makeup */
:root {
  --primary: #1E88E5;
  --secondary: #FF5252;
  --dark: #1A1A2E;
  --light: #F0F2F5;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

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

/* Header Styles */
header {
  background: linear-gradient(to right, #1A1A2E, #16213E);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.logo h1 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

/* Hero Section Styles */
.hero {
  padding: 10rem 0 6rem;
  background: var(--dark) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect width="150" height="150" fill="%231A1A2E"/><path d="M0,0l150,150M0,50l100,100M50,0l100,100M0,100l50,50M100,0l50,50" stroke="%23223" stroke-width="1" fill="none"/></svg>');
  text-align: center;
}

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

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--light);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), #64B5F6);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: #222;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.5rem;
  color: var(--white);
}

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

.feature-card {
  background-color: #16213E;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-text {
  color: var(--light);
  opacity: 0.8;
}

/* Footer Styles */
footer {
  background-color: #16213E;
  padding: 3.5rem 0 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo svg {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.copyright {
  color: var(--light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
