/* Landing (Home) Section Styles */
#home {
  background: #000 !important;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
}

#home h1 {
  font-size: 4em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--accent-red), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-out;
}

#home p {
  font-size: 1.5em;
  color: var(--text-secondary);
  margin-bottom: 10px;
  animation: slideUp 1s ease-out;
}

.home-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.82);
  z-index: 1;
  pointer-events: none;
}

.home-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 48px;
}

.profile-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent-red);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  background: #222;
}

.home-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-hero-wix {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(0,0,0,0.45);
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.18);
  padding: 48px 48px 48px 48px;
}

.home-img-rect {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.35);
  background: #222;
  position: relative;
}

.home-img-rect::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
  z-index: 2;
}

.profile-img-rect {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 32px;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
}

.home-hero-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.home-title {
  font-size: 2.8em;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Libre Baskerville', serif;
}

.home-subtitle {
  font-size: 1.25em;
  color: var(--accent-red) !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-desc {
  font-size: 1.1em;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .home-hero-wix {
    flex-direction: column;
    padding: 24px 10px 24px 10px;
    gap: 24px;
  }
  .home-img-rect {
    width: 90vw;
    height: 220px;
    min-width: 0;
    border-radius: 18px;
  }
  .profile-img-rect {
    border-radius: 18px;
  }
  .home-title {
    font-size: 1.5em;
  }
  .home-subtitle {
    font-size: 1em;
  }
  .home-desc {
    font-size: 0.98em;
  }
}

.home-hero-caro {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.home-caro-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 8vw;
  z-index: 2;
}

.home-caro-title {
  font-size: 3.2em;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  text-align: left;
}

.home-caro-title .accent {
  color: var(--accent-red);
}

.home-caro-dot {
  color: var(--accent-red);
  font-size: 1.2em;
  vertical-align: middle;
  margin-left: 0.1em;
}

.home-caro-subtitle {
  font-size: 1.1em;
  color: #fff;
  opacity: 0.85;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.08em;
}

.home-caro-desc {
  font-size: 1em;
  color: #fff;
  opacity: 0.95;
  margin-top: 18px;
}

.home-caro-img-rect {
  flex: 0 0 36vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 100vh;
  min-width: 280px;
  max-width: 440px;
  overflow: visible;
  background: none;
  margin-left: 0;
  margin-right: 8vw;
}

.profile-img-caro-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
}

.profile-img-caro-container::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.99) 100%);
  z-index: 3;
  pointer-events: none;
}

.profile-img-caro {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  background: none;
  filter: none;
  display: block;
  position: relative;
  z-index: 1;
}

.profile-img-caro-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 0;
  z-index: 2;
  pointer-events: none;
}

#typed-subtitle {
  color: var(--accent-red) !important;
} 