/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom font import for heading */
@font-face {
  font-family: 'Marrie Dream';
  src: url('./fonts/Marrie Dream.ttf') format('truetype'),
       url('./fonts/Marrie Dream.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables for our color scheme */
:root {
  --color-light-bg: #F7F6FB;          /* Very light lavender/white */
  --color-blue-gray: #ABBDBE;         /* Light blue-gray */
  --color-warm-gray: #8C7B6C;         /* Warm gray-brown */
  --color-orange-accent: #F28705;     /* Bright orange accent */
  --color-dark-gray: #202020;         /* Dark gray for text */
  --color-white: #ffffff;
  --color-black: #000000;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.3);
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
}

/* Portrait Container */
.portrait-container {
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease-out;
}

.portrait-frame {
  position: relative;
  display: inline-block;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.portrait-image {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.portrait-image:hover {
  transform: scale(1.02);
}

/* Text Content */
.text-content {
  animation: fadeInUp 1.5s ease-out 0.3s both;
}

.main-title {
  font-family: 'Marrie Dream', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: normal;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent {
  color: var(--color-orange-accent);
  -webkit-text-fill-color: var(--color-orange-accent);
}

.subtitle {
  font-family: 'Marrie Dream', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Marrie Dream', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: normal;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
  
  .portrait-image {
    width: 250px;
    height: 320px;
  }
  
  .portrait-container {
    margin-bottom: 2rem;
  }
  
  .main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .subtitle {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .portrait-image {
    width: 200px;
    height: 260px;
  }
  
  .portrait-frame {
    padding: 0.25rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--color-orange-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d1740a;
}

/* Selection colors */
::selection {
  background: var(--color-orange-accent);
  color: white;
}

::-moz-selection {
  background: var(--color-orange-accent);
  color: white;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--color-orange-accent);
  outline-offset: 2px;
}
}