/* 
  Sdeffewasdf - Custom CSS Styles
  Theme: Monochrome Photography Editorial
  Created: January 20, 2026
*/


:root {
  --color-bg-primary: #121212;
  --color-bg-secondary: #1E1E1E;
  --color-text: #F5F5F5;
  --color-text-muted: #AAAAAA;
  --color-accent: #55A39B;
  --color-accent-secondary: #8B6E4E;
  --color-border: #333333;
  --color-form-bg: #252525;
  --color-form-focus: #444444;
  --color-error: #A35555;
  
  --font-primary: 'Sora', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}


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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover, a:focus {
  color: var(--color-accent);
  outline: none;
}

button, .btn {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  transition: var(--transition);
}

ul, ol {
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 3.6rem;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.6rem;
  max-width: 70ch;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 10rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 2px;
  background-color: var(--color-accent);
}

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

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }
.mb-6 { margin-bottom: 6rem; }


.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-text);
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover, .btn:focus {
  background-color: var(--color-text);
  color: var(--color-bg-primary);
}

.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg-primary);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: transparent;
  color: var(--color-accent);
}

.btn-lg {
  padding: 1.6rem 4rem;
}

.btn-sm {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
}


.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 2rem 0;
  background-color: rgba(18, 18, 18, 0.9);
  transition: var(--transition);
}

.header.scrolled {
  padding: 1.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 5rem;
}

.nav-list {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover::after, 
.nav-link:focus::after, 
.nav-link.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 2.4rem;
  cursor: pointer;
}


.hero {
  height: 60vh;
  min-height: 60rem;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-primary);
  position: relative;
  margin-top: 8rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 70rem;
}

.hero-title {
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 4rem;
  max-width: 50rem;
}


.about-section {
  background-color: var(--color-bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: 3rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.about-feature-icon {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-right: 2rem;
}

.about-feature-text h4 {
  margin-bottom: 1rem;
}


.products-section {
  background-color: var(--color-bg-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 4rem;
}

.product-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}

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

.product-image {
  height: 30rem;
  width: 100%;
  object-fit: cover;
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}


.classes-section {
  background-color: var(--color-bg-secondary);
}

.class-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--color-border);
}

.class-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.class-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.class-details h3 {
  margin-bottom: 2rem;
}

.class-info {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.class-info-item {
  display: flex;
  align-items: center;
}

.class-info-icon {
  color: var(--color-accent);
  font-size: 2rem;
  margin-right: 1rem;
}


.testimonials-section {
  background-color: var(--color-bg-primary);
}

.testimonial {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-quote {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 3rem;
}

.testimonial-author {
  font-weight: 500;
  font-size: 1.8rem;
}

.testimonial-role {
  color: var(--color-text-muted);
  font-size: 1.6rem;
}

.quote-icon {
  position: absolute;
  color: var(--color-border);
  font-size: 4rem;
}

.quote-icon-left {
  top: 2rem;
  left: 2rem;
}

.quote-icon-right {
  bottom: 2rem;
  right: 2rem;
}


.contact-section {
  background-color: var(--color-bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}

.contact-info h3 {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.contact-icon {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-right: 2rem;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
}

.contact-map {
  width: 100%;
  height: 40rem;
  border: none;
  margin-top: 4rem;
}

.contact-form-group {
  margin-bottom: 2.5rem;
}

.contact-label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--color-form-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  transition: var(--transition);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--color-accent);
  background-color: var(--color-form-focus);
  outline: none;
}

.contact-textarea {
  min-height: 15rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.form-checkbox input {
  margin-right: 1.5rem;
  margin-top: 0.4rem;
}


.footer {
  background-color: var(--color-bg-primary);
  padding: 8rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}

.footer-logo {
  margin-bottom: 2rem;
  height: 5rem;
}

.footer-about {
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-social-list {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-bg-secondary);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social-link:hover, .footer-social-link:focus {
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
}

.footer-bottom-link {
  color: var(--color-text-muted);
  font-size: 1.4rem;
}

.footer-bottom-link:hover {
  color: var(--color-text);
  text-decoration: underline;
}


.page-header {
  height: 40vh;
  min-height: 40rem;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 8rem;
  background-color: var(--color-bg-primary);
}

.page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.about-section-alt {
  padding: 8rem 0;
}

.about-story {
  display: flex;
  gap: 6rem;
  margin-bottom: 8rem;
}

.about-story-image {
  flex: 1;
}

.about-story-content {
  flex: 1;
}

.ingredient-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.ingredient-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.ingredient-card:nth-child(even) .ingredient-image {
  order: 2;
}

.ingredient-card:nth-child(even) .ingredient-content {
  order: 1;
}

.ingredient-image {
  width: 100%;
  height: auto;
}

.program-details {
  padding: 6rem;
  background-color: var(--color-bg-secondary);
  margin-bottom: 8rem;
}

.program-info-list {
  margin-bottom: 4rem;
}

.program-info-item {
  display: flex;
  margin-bottom: 2rem;
}

.program-info-icon {
  color: var(--color-accent);
  font-size: 2rem;
  margin-right: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  transition: var(--transition);
}

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


.thank-you-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 10rem 0;
}

.thank-you-icon {
  font-size: 8rem;
  color: var(--color-accent);
  margin-bottom: 4rem;
}

.thank-you-heading {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}

.thank-you-text {
  max-width: 60rem;
  margin: 0 auto 4rem;
}


.legal-section {
  padding: 10rem 0;
}

.legal-section h2 {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.legal-section h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-section p, .legal-section ul, .legal-section ol {
  margin-bottom: 2rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 2rem;
}

.legal-section ul li, .legal-section ol li {
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style-type: disc;
}

.legal-section ol {
  list-style-type: decimal;
}

.legal-date {
  margin-bottom: 4rem;
  color: var(--color-text-muted);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 2rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40rem;
  max-width: 100%;
  background-color: var(--color-bg-primary);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-settings-panel.active {
  transform: translateX(0);
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.settings-close {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.category-toggle {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2.5rem;
}

.category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .4s;
  border-radius: 3.4rem;
}

.category-slider:before {
  position: absolute;
  content: "";
  height: 1.8rem;
  width: 1.8rem;
  left: 0.4rem;
  bottom: 0.4rem;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .category-slider {
  background-color: var(--color-accent);
}

input:focus + .category-slider {
  box-shadow: 0 0 1px var(--color-accent);
}

input:checked + .category-slider:before {
  transform: translateX(2.5rem);
}

.cookie-item {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.cookie-item p {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.cookie-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


.animate {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate--fade-up {
  transform: translateY(4rem);
}

.animate--fade-down {
  transform: translateY(-4rem);
}

.animate--fade-left {
  transform: translateX(4rem);
}

.animate--fade-right {
  transform: translateX(-4rem);
}

.animate.animate--active {
  opacity: 1;
  transform: translate(0);
}


.progress-container {
  margin: 4rem 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.progressbar svg {
  width: 100%;
  height: 5px;
}

.progressbar path.path {
  stroke: var(--color-accent);
  stroke-width: 5px;
}


@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-grid, 
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .class-card,
  .ingredient-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ingredient-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .ingredient-card:nth-child(even) .ingredient-image,
  .ingredient-card:nth-child(even) .ingredient-content {
    order: initial;
  }
  
  .about-story {
    flex-direction: column;
    gap: 4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .section {
    padding: 8rem 0;
  }
  
  .hero {
    height: 50vh;
    min-height: 50rem;
  }
  
  .hero-title {
    font-size: 4.2rem;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100vh;
    background-color: var(--color-bg-primary);
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
    padding: 5rem;
    z-index: 999;
  }
  
  .nav-list.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-nav-toggle {
    display: block;
    z-index: 1000;
  }
  
  .mobile-nav-toggle.active {
    position: fixed;
    top: 2rem;
    right: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2.4rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .program-details {
    padding: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .animate {
    opacity: 1;
    transform: none;
  }
}