/* ========================================
   Main CSS - Global Styles & Variables
   ======================================== */

:root {
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-accent: #4a6fa5;
  --color-accent-light: #e8f0f8;
  --color-text-gray: #555555;
  --color-text-light: #777777;
  --color-border: #e0e0e0;
  --color-bg-gray: #f5f5f5;
  --color-warm-beige: #f8f6f3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Section Base Styles */
section {
  padding: 96px 24px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 48px;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  text-align: center;
}

.bg-gray {
  background-color: var(--color-bg-gray);
}

/* Profile Image */
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 16px;
  }

  .section-title {
    font-size: 28px;
  }
}
