:root {
  /* Triadic color scheme */
  --primary-color: #0066cc; /* Vibrant blue */
  --secondary-color: #cc0066; /* Bold pink */
  --tertiary-color: #66cc00; /* Fresh green */
  
  /* Darker shades for hover effects */
  --primary-dark: #0052a3;
  --secondary-dark: #a30052;
  --tertiary-dark: #52a300;
  
  /* Lighter shades for backgrounds */
  --primary-light: #e6f0ff;
  --secondary-light: #ffe6f0;
  --tertiary-light: #f0ffe6;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #cccccc;
  --dark-gray: #333333;
  --black: #111111;
  
  /* Text colors */
  --text-primary: #222222;
  --text-secondary: #555555;
  --text-light: #ffffff;
  
  /* Fonts */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Box shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15), 0 5px 8px rgba(0,0,0,0.08);
  
  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.2);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-blur: blur(10px);
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/* Container modifications */
.container {
  padding: 0 var(--space-md);
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Buttons */
.button {
  transition: all var(--transition-medium);
  font-family: var(--heading-font);
  font-weight: 500;
  border-radius: var(--radius-md);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-primary {
  background-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-outlined {
  border: 2px solid var(--white);
}

.button.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button.is-light {
  color: var(--primary-color);
}

.button.is-light:hover {
  color: var(--primary-dark);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transition: background-color var(--transition-medium);
}

.navbar-brand .title {
  color: var(--primary-color);
  margin: 0;
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color) !important;
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  background-color: var(--dark-gray);
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-body {
  padding: var(--space-xl) 0;
}

.hero .title,
.hero .subtitle {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  margin-bottom: var(--space-lg);
}

/* Collections Section */
#collections {
  background-color: var(--white);
  padding: var(--space-xl) 0;
}

.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.image-container {
  height: 250px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content .title {
  color: var(--text-primary);
}

.card-content .subtitle {
  color: var(--secondary-color);
  margin-top: -0.5rem;
  margin-bottom: var(--space-md);
}

.price-tag {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.card-content .button {
  margin-top: auto;
}

/* Pricing Section */
#pricing {
  padding: var(--space-xl) 0;
}

.price {
  font-family: var(--heading-font);
  padding: var(--space-md) 0;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.currency {
  font-size: 1rem;
  vertical-align: super;
  color: var(--text-secondary);
}

.period {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.featured {
  position: relative;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-top: 4px solid var(--primary-color);
}

.featured::before {
  content: "Popular";
  position: absolute;
  top: 0;
  right: var(--space-md);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem var(--space-md);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.8rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.content ul {
  margin-bottom: var(--space-lg);
}

.content ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-lg);
}

.content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
  font-weight: bold;
}

/* Sustainability Section */
#sustainability {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

/* Insights Section */
#insights {
  padding: var(--space-xl) 0;
}

#insights .card-content h3 {
  color: var(--primary-color);
}

#insights .subtitle {
  color: var(--secondary-color);
}

#insights .button {
  background-color: var(--secondary-color);
}

#insights .button:hover {
  background-color: var(--secondary-dark);
}

/* Innovation Section */
#innovation {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.external-resources {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
}

.notification {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.notification:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.notification a {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* Events Section */
#events {
  padding: var(--space-xl) 0;
}

#events .subtitle {
  color: var(--tertiary-color);
  font-weight: 600;
}

/* Projects Section */
#projects {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.progress-container {
  margin-top: var(--space-md);
}

.progress.is-primary {
  height: 0.75rem;
  border-radius: var(--radius-sm);
}

/* Behind the Scenes Section */
#behind-the-scenes {
  padding: var(--space-xl) 0;
}

/* Contact Section */
#contact {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.info-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.info-box p {
  margin-bottom: var(--space-sm);
}

.info-box p:last-child {
  margin-bottom: 0;
}

.box {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

form .field:not(:last-child) {
  margin-bottom: var(--space-md);
}

input.input, textarea.textarea, .select select {
  border: 1px solid var(--medium-gray);
  transition: border-color var(--transition-fast);
  border-radius: var(--radius-sm);
}

input.input:focus, textarea.textarea:focus, .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-light);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.footer .title {
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: var(--space-xs);
  color: var(--light-gray);
}

/* Success Page */
.success-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.success-container {
  max-width: 600px;
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 4rem;
  color: var(--tertiary-color);
  margin-bottom: var(--space-lg);
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.content-page .container {
  max-width: 800px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .hero-body {
    padding: var(--space-lg) 0;
  }
  
  .card-image .image-container {
    height: 200px;
  }
  
  .hero .title {
    font-size: 2rem !important;
  }
  
  .hero .subtitle {
    font-size: 1.5rem !important;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Animations and Effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

.has-background-light {
  background-color: var(--light-gray) !important;
}

/* Read more links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--heading-font);
  position: relative;
  padding-right: 1.5em;
  transition: color var(--transition-fast);
}

.read-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}