/* ==================== CSS VARIABLES ==================== */
:root {
  --primary-color: #6A1B9A;
  --primary-dark: #4A148C;
  --primary-light: #9C27B0;
  --primary-lighter: #BA68C8;
  --secondary-color: #2E7D32;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(106, 27, 154, 0.1);
  --shadow-hover: 0 4px 16px rgba(106, 27, 154, 0.2);
}

/* ==================== RESET & BASE ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  container-type: scroll-state;
  container-name: page;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  font-size: 16px;
}

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

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

@container page scroll-state(stuck: top) {
  .site-header {
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.15);
  }
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
}

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

.main-nav a:hover::after {
  width: 100%;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  translate: 80px 0;
  transition: translate 0.3s ease, background 0.2s;
}

.back-to-top:hover {
  background: var(--primary-dark);
}

@container page scroll-state(scrollable: top) {
  .back-to-top {
    translate: 0 0;
  }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  margin-top: 0;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-text p {
  margin-bottom: 1rem;
}

.locations-preview {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.location-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.cta-text {
  font-weight: 600;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.hero-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--bg-light);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ==================== PRICE ANNOUNCEMENT ==================== */
.price-announcement {
  background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
  padding: 3rem 0;
  color: white;
}

.announcement-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.announcement-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.announcement-text {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 0.5rem;
}

.new-price {
  font-weight: bold;
  font-size: 1.5rem;
  color: #FFD700;
}

.announcement-subtext {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.95;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* ==================== STRAINS SECTION ==================== */
.strains-section {
  background: var(--bg-white);
}

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

.strain-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.strain-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.strain-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-light);
}

.strain-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strain-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.strain-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.strain-card p:last-child {
  margin-bottom: 0;
}

.strain-detail {
  font-size: 0.95rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}

/* ==================== NEW PRICES SECTION ==================== */
.new-prices-section {
  background: var(--bg-white);
}

/* ==================== PACKAGES SECTION ==================== */
.packages-section {
  background: var(--bg-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.package-card.featured {
  border-color: var(--primary-color);
  border-width: 3px;
}

.package-card.premium {
  border-color: var(--primary-dark);
  border-width: 3px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.package-header {
  margin-bottom: 1.5rem;
}

.package-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.package-amount {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

.package-price {
  margin-bottom: 1rem;
}

.package-price .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.package-price .price-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.package-price-per-gram {
  font-size: 1rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.old-gram-price {
  text-decoration: line-through;
  margin-right: 0.5rem;
  color: var(--text-light);
}

.new-gram-price {
  color: var(--primary-color);
  font-weight: bold;
}

.price-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* ==================== PLANTAGE SECTION ==================== */
.plantage-section {
  background: var(--bg-light);
}

.plantage-content {
  max-width: 1000px;
  margin: 0 auto;
}

.plantage-text {
  text-align: center;
  margin-bottom: 3rem;
}

.plantage-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.plantage-text p:last-of-type {
  margin-bottom: 0;
}

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

.plantage-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.plantage-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.plantage-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.plantage-image-wrapper:hover .plantage-image {
  transform: scale(1.05);
}

.plantage-instagram {
  text-align: center;
  margin-top: 2rem;
}

.instagram-link {
  display: inline-block;
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(225, 64, 95, 0.3);
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 64, 95, 0.4);
}

/* ==================== LOCATIONS SECTION ==================== */
.locations-section {
  background: var(--bg-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.location-card {
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.location-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.team-image-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.team-placeholder-icon {
  font-size: 5rem;
  opacity: 0.5;
  color: var(--text-light);
}

.team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.team-role {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-top: auto;
}

.team-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.team-phone {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  display: inline-block;
}

.team-phone:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==================== JOIN SECTION ==================== */
.join-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0;
}

.join-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join-section .section-title {
  color: white;
}

.join-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.join-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.join-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.join-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.join-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.join-requirements {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.requirements-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}

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

.requirements-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  opacity: 0.95;
}

.requirements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2rem;
}

.requirements-list li:last-child {
  margin-bottom: 0;
}

.join-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.join-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--bg-light);
}

.join-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

.join-powered-by {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

.join-powered-by strong {
  color: white;
  font-weight: 600;
}

/* ==================== IMPRESSUM SECTION ==================== */
.impressum-section {
  background: var(--bg-light);
}

.impressum-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.impressum-block {
  margin-bottom: 2.5rem;
}

.impressum-block:last-child {
  margin-bottom: 0;
}

.impressum-block h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.impressum-block h4 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.impressum-block p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.impressum-block a {
  color: var(--primary-color);
  text-decoration: none;
}

.impressum-block a:hover {
  text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-lighter);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.9;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .strains-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .plantage-images {
    grid-template-columns: 1fr;
  }

  .plantage-image {
    height: 250px;
  }

  .main-nav {
    gap: 1rem;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .impressum-content {
    padding: 2rem 1.5rem;
  }

  .logo-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .logo-image {
    height: 50px;
  }

  .join-card {
    padding: 2rem 1.5rem;
  }

  .join-logo {
    max-width: 150px;
  }

  .join-card h3 {
    font-size: 1.5rem;
  }

  .join-button {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
  }

  .join-requirements {
    padding: 1.25rem;
  }

  .requirements-title {
    font-size: 1rem;
  }

  .requirements-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .announcement-card h2 {
    font-size: 1.5rem;
  }

  .announcement-text {
    font-size: 1.1rem;
  }

  .package-price .price {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-button {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
