:root {
  /* Colors */
  --color-green-dark: #2d5016;
  --color-green: #4a7c23;
  --color-green-light: #7cb342;
  --color-sand: #f5f0e8;
  --color-white: #ffffff;
  --color-text: #333333;

  /* Fonts */
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Sizing */
  --border-radius: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Spacing */
  --gap-sm: 0.75rem;
  --gap-md: 1rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  background-color: var(--color-sand);
}

/* ========================================
   Header
   ======================================== */

header {
  text-align: center;
  padding: 2rem var(--gap-md);
  color: var(--color-green-dark);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
}

.logo {
  height: clamp(3rem, 10vw, 5rem);
  width: auto;
}

header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-style: italic;
  color: var(--color-green);
  letter-spacing: 0.1em;
}

/* ========================================
   Main Content Layout
   ======================================== */

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  padding: var(--gap-md);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   Slideshow Component
   ======================================== */

.slideshow-container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  width: 100%;
  max-width: 600px;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideshow 16s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }

@keyframes slideshow {
  0%, 100% { opacity: 0; }
  5%, 25% { opacity: 1; }
  30% { opacity: 0; }
}

/* ========================================
   Contact Information
   ======================================== */

.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-md);
  width: 100%;
  max-width: 100%;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: 1rem 1.5rem;
  background-color: rgba(74, 124, 35, 0.1);
  border: 2px solid rgba(74, 124, 35, 0.3);
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-green-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: background-color var(--transition-normal), transform var(--transition-fast), border-color var(--transition-normal);
  cursor: pointer;
}

.contact-link:hover {
  background-color: rgba(74, 124, 35, 0.15);
  border-color: var(--color-green);
  transform: translateY(-1px);
}

.contact-icon {
  font-size: 1.2rem;
}

/* ========================================
   Description Section
   ======================================== */

.description {
  text-align: center;
  padding: var(--gap-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.description h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-green-dark);
  margin-bottom: var(--gap-md);
}

.description p {
  margin-bottom: var(--gap-md);
  line-height: 1.7;
}

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

/* ========================================
   Responsive Design (Desktop Layout)
   ======================================== */

@media (min-width: 768px) {
  .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-xl);
    padding: 2rem;
    min-height: calc(100vh - 150px);
  }

  .slideshow-container {
    max-width: 60%;
    flex-shrink: 0;
  }

  .description {
    text-align: left;
  }
}
