/* Base Reset and Variables */
:root {
  --primary: #4b2e83; /* Purple */
  --secondary: #b7a57a; /* Gold */
  --accent: #e8e3d3; /* Light cream */
  --dark: #2d2926; /* Near black */
  --light: #f4f4fc; /* Light gray/white */
  --text-dark: #333333;
  --text-light: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 5px 20px rgba(0,0,0,0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

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

p {
  margin-bottom: 1rem;
}

/* Diagonal Header */
.diagonal-container {
  background-color: var(--light);
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 4rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  height: 100px;
}

.diagonal-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 280px;
}

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

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}

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

nav a:hover:after {
  width: 100%;
}

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

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: var(--primary);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  margin: 0 0.5rem;
}

.primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(75, 46, 131, 0.3);
}

.primary:hover {
  background-color: #3b2465;
  transform: translateY(-3px);
  box-shadow: 0 7px 25px rgba(75, 46, 131, 0.5);
}

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

.secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

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

.features-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

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

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
  background-color: #fff;
  padding: 6rem 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 0.75rem 2rem;
  margin: 0 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-button.active {
  border-color: var(--primary);
  color: var(--primary);
}

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

.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.placeholder-item {
  background-color: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.placeholder-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.placeholder-item svg {
  width: 100%;
  height: 200px;
}

.placeholder-text {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

/* About Section */
.about {
  background-color: var(--light);
  padding: 6rem 0;
}

.about-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  text-align: center;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-cta {
  margin-top: 2rem;
}

/* Features List */
.features-list {
  background-color: #fff;
  padding: 6rem 0;
}

.features-list-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-right: 1.5rem;
  min-width: 60px;
}

.feature-details h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-svg {
  max-width: 100%;
  height: auto;
}

.footer-icon {
  text-align: center;
}

.footer-icon svg {
  max-width: 100%;
  height: 200px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

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

.footer-column a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo, .footer-icon {
    margin-bottom: 2rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-column {
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .diagonal-container {
    height: auto;
    padding-bottom: 3rem;
  }
  
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    margin-bottom: 1.5rem;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  nav ul {
    flex-direction: column;
    position: fixed;
    background: var(--light);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    z-index: 9;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  nav ul.show {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .features-list-container {
    padding: 0 2rem;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .button {
    width: 80%;
    margin: 0.5rem 0;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-number {
    margin: 0 auto 1rem;
  }
}
