<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * components.css - Trapezoid styling and UI components
 *
 * This file defines the aggressive visual styling using trapezoid shapes
 * instead of traditional rectangular boxes. The trapezoid effect is achieved
 * using a combination of:
 * 1. CSS transforms (skew, rotate, perspective)
 * 2. Clip-path for complex shapes
 * 3. Pseudo-elements for additional angles and effects
 */

/* ===== HERO SECTION STYLING ===== */
.hero-section {
  background-color: var(--color-background);
  color: var(--color-text);
  position: static; /* Explicitly set as static */
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: calc(var(--header-height) + 6rem); /* Use padding not margin */
  padding-bottom: 3rem;
  box-sizing: border-box; /* Ensure padding is included in height calculation */
}

/* Adjust content vertical spacing */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Accent line under hero title */
.hero-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--color-primary);
  transform: skewX(-15deg);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ===== CONTACT BUTTON ===== */
.contact-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  /* Create trapezoid shape by skewing */
  transform: skewX(-15deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-button:hover {
  transform: skewX(-15deg) translateY(-5px);
  background-color: var(--color-primary-light);
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  height: 100%;
  width: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  translate: 4px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--color-text);
  z-index: 2;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  40% {
      transform: translateX(-50%) translateY(-10px);
  }
  60% {
      transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== FOOTER STYLING ===== */
.site-footer {
  background-color: var(--color-background);
  color: var(--color-text);
  position: relative;
  height: 100%;
  padding: 3rem 1rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-heading-about, .footer-heading-contacts {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Accent line under footer headings */
.footer-heading-about::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 50%;
  height: 3px;
  background-color: var(--color-primary);
  transform: skewX(-15deg);
}

/* Accent line under footer headings */
.footer-heading-contacts::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: var(--color-primary);
  transform: skewX(-15deg);
}

.about-content {
  line-height: 1.6;
  max-width: 500px;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ===== TRAPEZOID CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-card {
  background-color: var(--color-surface);
  color: var(--color-text);
  position: relative;
  transition: all 0.3s ease;
  border: none;
  overflow: visible;
  margin: 1rem 0;
  height: 80px;
  box-shadow: var(--shadow-md);
}

/* Create the trapezoid shape with a skewed pseudo-element */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-surface);
  z-index: -1;
  transform: skewX(-15deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover::before {
  transform: skewX(-35deg);
  background-color: var(--color-surface-hover);
}

/* Edge accent */
.contact-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 10px;
  height: 100%;
  background-color: var(--color-primary);
  transform: skewX(15deg);
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  height: 100%;
}

.card-content img {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
}

.card-content span {
  font-size: 1rem;
  font-weight: 600;
}

/* ===== FLASH MESSAGES ===== */
.flash-container {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flash-message {
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
  /* Trapezoid shape with clip-path */
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  animation: slideDown 0.3s ease-out forwards;
  opacity: 0;
}

.flash-success {
  background-color: var(--color-success);
  color: white;
}

.flash-error {
  background-color: var(--color-error);
  color: white;
}

@keyframes slideDown {
  0% {
      transform: translateY(-20px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Auto dismiss animation */
.flash-message.auto-dismiss {
  animation: fadeOut 0.3s ease-in forwards;
  animation-delay: 5s;
}

@keyframes fadeOut {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: translateY(-20px);
  }
}

/* ===== PORTRAIT WARNING ===== */
.portrait-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: var(--z-highest);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.portrait-warning.hidden {
  display: none;
}

.portrait-warning-content {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 400px;
  text-align: center;
  /* Trapezoid shape */
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.portrait-warning-icon {
  color: var(--color-warning);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.dismiss-button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  /* Subtle trapezoid shape */
  transform: skewX(-5deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dismiss-button:hover {
  transform: skewX(-5deg) translateY(-2px);
  background-color: var(--color-primary-light);
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: var(--spacing-xl) 0;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem 0.5rem 1rem;
  color: var(--color-text);
}

.section-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: -1;
  transform: skewX(-15deg);
}</pre></body></html>