/* Rollin' Oaks - Main Stylesheet */

:root {
  /* Colors */
  --color-primary: #2d5016;
  --color-primary-light: #4a7c25;
  --color-primary-dark: #1e3a0f;
  --color-secondary: #8b6914;
  --color-accent: #d4a853;
  --color-background: #faf8f5;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-border: #e5e5e5;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

.btn-lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-lg);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  opacity: 0.85;
}

.hero-location {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-note {
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  opacity: 0.7;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

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

/* Features Section */
.features {
  padding: var(--space-2xl) 0;
  background-color: var(--color-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
  padding: var(--space-2xl) 0;
  background-color: var(--color-primary-dark);
  color: white;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Location Section */
.location {
  padding: var(--space-2xl) 0;
  background-color: var(--color-surface);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-map img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.location-distances h3 {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.location-distances h3:first-child {
  margin-top: 0;
}

.distance-list {
  list-style: none;
}

.distance-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.distance-icon {
  font-size: 1.25rem;
}

/* Reserve Section */
.reserve {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.reserve-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.reserve-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.reserve-card h2 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.reserve-subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.reserve-benefits {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.benefit-icon {
  color: var(--color-primary);
  font-weight: bold;
}

.reserve-form {
  text-align: left;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
}

.social-proof {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.vip-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip-count .count {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Newsletter Section */
.newsletter {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  text-align: center;
}

.newsletter h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.newsletter p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.email-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

/* FAQ Section */
.faq {
  padding: var(--space-2xl) 0;
  background-color: var(--color-surface);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-more {
  text-align: center;
  margin-top: var(--space-xl);
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-links a {
  color: white;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.footer-social a {
  color: white;
  opacity: 0.8;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item-large {
    grid-column: span 2;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .email-form {
    flex-direction: column;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}
