/* Modern Luxury Design - Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-black: #0a0a0a;
  --rich-gold: #c9a96e;
  --cream-white: #faf9f6;
  --warm-grey: #f5f4f1;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;
  
  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-accent: 'Crimson Text', serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-width: min(90vw, 1400px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream-white);
  overflow-x: hidden;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 5px;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 110, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.floating-nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 1;
  pointer-events: auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--rich-gold);
}
.nav-logo-link{
  text-decoration: none;
}
.essays-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;

  background: var(--rich-gold);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
}

.essays-btn:hover {
  background: #b8956a;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg1.webp') center/cover;
  opacity: 0.4;
  mix-blend-mode: unset;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  bottom: -26vh;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  color: white;
  margin-bottom: 1rem;
}

.hero-title1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  color: rgb(0, 0, 0);
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: center;

}

.story-slideshow img {
  width: 10rem;
  height: 10rem;
  border-radius: 5px;
  margin-top: 1rem;
  margin-left: 2rem;
}

.title-line {
  display: block;
  font-weight: 300;
}

.title-line1 {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 5rem;
  display: block;
  font-weight: 100;
  color: var(--text-dark);
}

.hero-roles {
  margin: 1rem auto;

}

.role-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  justify-content: center; /* Optional: centers the items horizontally */
  gap: 1rem; /* Optional: spacing between items */
}

.role-list li {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--rich-gold);
  font-style: italic;
  margin-bottom: 0.5rem;
  position: relative;
}

.role-list li:not(:last-child)::after {
  content: '•';
  color: var(--rich-gold);
  margin-left: 1rem;
  margin-right: 0.5rem;
  font-style: normal;
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 1rem;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--primary-black);
  background: var(--rich-gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--rich-gold);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: transparent;
  color: var(--rich-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 1rem 0;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--rich-gold);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--rich-gold);
  border-bottom: 2px solid var(--rich-gold);
  transform: rotate(45deg);
}

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

/* Story Slideshow */
.story-slideshow {
  background: var(--warm-grey);
  padding: 2rem ;
  position: relative;
}

.slideshow-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.slide-track {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.story-slide {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-slide.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

.story-slide:nth-child(even) .slide-content {
  grid-template-columns: 1.2fr 1fr;
}

.story-slide:nth-child(even) .slide-visual {
  order: 2;
}

.story-slide:nth-child(even) .slide-text {
  order: 1;
}

.slide-visual {
  position: relative;
}

.slide-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-slide.slide-in .slide-image img {
  transform: scale(1.02);
}

.slide-number {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--rich-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 10;
}

.slide-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.slide-text p {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.slide-meta {
  display: flex;
  gap: 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide-meta span {
  color: var(--rich-gold);
}

/* Profile Showcase */
.profile-showcase {
  background: var(--primary-black);
  color: white;
  padding: var(--section-padding) 0;
}

.profile-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  align-items: start;
}

.profile-image-wrapper {
  position: relative;
}

.profile-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--rich-gold);
  border-radius: 8px;
  z-index: -1;
}

.profile-content {
  padding-top: 2rem;
}

.profile-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--rich-gold);
  margin-bottom: 0.5rem;
}

.profile-header h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.profile-header h4 {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.profile-header a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--rich-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: -40px;
  margin-bottom: 30px;
  
  
}

.profile-description {
  margin-bottom: 4rem;
}

.profile-description p {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.philosophy-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--rich-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.philosophy-section p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* Essays Page Styles */
.essays-hero {
  background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
  padding: 8rem 0 4rem;
  margin-top: 6rem;
  text-align: center;
}

.essays-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.essays-hero-content p {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--rich-gold);
  font-style: italic;
}

.essays-section {
  background: var(--warm-grey);
  padding: 6rem 0;
}

.essays-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.essay-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(30px);
}

.essay-card.animate-in {
  opacity: 1;
  transform: translateY(0);

}

.essay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.essay-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-bottom: 4rem;
}

.essay-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.essay-card.featured .essay-image {
  aspect-ratio: auto;
}

.essay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.essay-card:hover .essay-image img {
  transform: scale(1.05);
}

.essay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rich-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.essay-content {
  padding: 2rem;
}

.essay-card.featured .essay-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.essay-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}

.essay-date {
  color: var(--text-light);
}

.essay-category {
  color: var(--rich-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.essay-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.essay-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #4a4a4a !important;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}

.essay-excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.essay-card.featured .essay-excerpt {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.essay-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rich-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.essay-link:hover {
  color: var(--text-dark);
  gap: 0.75rem;
}

.essays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

/* Newsletter Section */
.newsletter-section1{
  background: var(--primary-black);
  width: 100%;
  text-align: center;
  color: white;
  padding: 2rem 0 5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.newsletter-section {
  background: var(--primary-black);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rich-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.newsletter-content p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--rich-gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
  padding: 1rem 2rem;
  background: var(--rich-gold);
  color: var(--primary-black);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: #b8956a;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--rich-gold) !important;
}

/* Social Follow Section */
.social-follow-section {
  background: var(--primary-black);
  padding: 4rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.social-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.social-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.social-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}

.social-content p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-weight: 300;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rich-gold);
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.2);
  color: var(--rich-gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  background: var(--rich-gold);
  color: var(--primary-black);
  transform: scale(1.05);
}

.social-link span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.social-link:hover span {
  color: white;
}

/* Platform-specific hover colors */
.social-link.youtube:hover .social-icon {
  background: #ff0000;
  color: white;
}

.social-link.instagram:hover .social-icon {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: white;
}

.social-link.twitter:hover .social-icon {
  background: #ffffff;
  color: #000000;
}

.social-link.linkedin:hover .social-icon {
  background: #0077b5;
  color: white;
}

.social-link.website:hover .social-icon {
  background: var(--rich-gold);
  color: var(--primary-black);
}

.social-link.linktree:hover .social-icon {
  background: #39e09b;
  color: white;
}

.social-link.substack:hover .social-icon {
  background: #ff6719;
  color: white;
}

/* Minimal Footer */
.minimal-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--rich-gold);
}

.footer-copyright p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-nav {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    padding: 1rem 1.5rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .slide-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }

  .story-slide:nth-child(even) .slide-visual,
  .story-slide:nth-child(even) .slide-text {
    order: initial !important;
  }

  .slide-number {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .profile-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .profile-img {
    height: 500px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
