/* ========================================
   CSS Variables
   ======================================== */
:root {
  --color-primary: #1a1a1a;
  --color-accent: #b8964c;
  --color-secondary: #7d8c7a;
  --color-text: #f5f5f0;
  --color-text-muted: rgba(245, 245, 240, 0.6);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  text-align: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.logo {
  margin-bottom: 2rem;
}

.logo-svg {
  width: 280px;
  height: 80px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  fill: var(--color-text);
  letter-spacing: 0.3em;
}

.logo-subtext {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-accent);
  letter-spacing: 26px;
}

.tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   About Section
   ======================================== */
.about {
  background-color: var(--color-primary);
}

.about-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
}

.about-text.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.location {
  margin-top: 3rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  opacity: 0;
}

.location.visible {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  background-color: #151515;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  color: var(--color-text);
}

.contact .container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.contact-form {
  width: 100%;
  max-width: 900px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: border-color var(--transition), background-color var(--transition);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--color-accent);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.submit-btn:hover {
  background-color: #c9a75d;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  min-height: auto;
  padding: 2rem;
  background-color: #151515;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .logo-svg {
    width: 220px;
    height: 70px;
  }

  .logo-text {
    font-size: 22px;
    line-height: 43px;
  }

  .logo-subtext {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 26px;
    padding-left: 20px;
  }

  .tagline {
    font-size: 0.875rem;
  }

  .about-text {
    font-size: 1.25rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-svg {
    width: 180px;
    height: 60px;
  }

  .logo-text {
    font-size: 18px;
  }

  .about-text {
    font-size: 1.125rem;
  }
}
