/* Modern, clean design with a different color scheme and layout */
:root {
  --primary-color: #6A3093;
  --secondary-color: #A044FF;
  --accent-color: #FF4C54;
  --dark-color: #1E1E2C;
  --light-color: #f9f9f9;
  --text-color: #333;
  --text-light: #777;
  --background-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  --border-radius: 12px;
}

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

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

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

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styles - Completely different from previous site */
header {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
  position: relative;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 0;
}

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

.logo-container {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  font-weight: bold;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(255, 76, 84, 0.3);
  transition: var(--transition);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(255, 76, 84, 0.4);
}

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

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(160, 68, 255, 0.3));
}

/* Features Section - Different layout */
.features {
  padding: 100px 0;
  background-color: white;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

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

.feature-box {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-10px);
}

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

.feature-box h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-box p {
  color: var(--text-light);
}

/* Gallery Section - New section not in previous site */
.gallery {
  padding: 100px 0;
  background: var(--background-gradient);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-svg {
  width: 80%;
  height: 80%;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.view-btn {
  background-color: white;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .view-btn {
  transform: translateY(0);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(160, 68, 255, 0.1);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 76, 84, 0.1);
}

.cta-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 25px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Footer - Different style */
footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 50px 0;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .logo-container {
    justify-content: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-container {
    gap: 30px;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-btn {
    padding: 15px 30px;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
}
