
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---  THEME  --- */
html, body {
  
  overflow-x: visible !important; 
}

.wrapper, .main-content, .container, .container-lg, .page-header {
  perspective: none !important;
 
}



.page-header { display: none !important; }

.main-content, .container, .container-lg { 
  padding-top: 0 !important; 
  max-width: 85% !important; 
  margin: 0 auto !important; 
  padding-left: 2rem !important; 
  padding-right: 2rem !important;
}

/* --- 2. Background --- */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  background-color: #F9F8F4 !important;
  color: #4A4A4A !important;
  line-height: 1.8 !important;
  margin: 0 !important; 
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #5A6B5D !important; 
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

h1 {
  color: #3E4A41 !important; 
}

/* --- 3. Styling --- */
a {
  transition: all 0.4s ease-in-out !important; 
}

p a {
  color: #6B8E7B !important; 
  border-bottom: 1px solid transparent;
  text-decoration: none !important;
}
p a:hover {
  color: #4A6355 !important; 
  border-bottom: 1px solid #4A6355;
}

/* --- 4. Navigation Menu --- */
div[style*="text-align: center"] a {
  color: #8C8C8C !important;
  border-bottom: 2px solid transparent !important;
  padding-bottom: 4px !important;
  margin: 0 15px !important;
  text-decoration: none !important;
  font-weight: 400 !important;
}

div[style*="text-align: center"] a:hover {
  color: #5A6B5D !important; 
}

.active-nav-link {
  color: #3E4A41 !important;
  border-bottom: 2px solid #3E4A41 !important;
  font-weight: 500 !important;
}


.profile-pic {
  display: block !important;
  margin-bottom: 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(62, 74, 65, 0.08) !important;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.profile-pic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(62, 74, 65, 0.12) !important;
}


.hero-banner {
  display: block !important;
  min-height: 350px !important; 
  width: 100vw !important;

  
  background-attachment: scroll !important; 
  background-size: cover !important;
  background-position: center center !important; 
  
  background-repeat: no-repeat !important;

  position: relative !important;
  left: 50% !important;
   transform: translateX(-50%) !important;
  
margin-top: -2rem !important;
  margin-bottom: 50px !important;
}


@media (max-width: 1024px), (hover: none) and (pointer: coarse){
  .hero-banner {
    background-attachment: scroll !important; 
    background-position: center center !important; 
   
  }
  
  
}




/* --- 9. Soft Entrance Animation --- */
@keyframes simpleFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes softFadeUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

.profile-column {
  animation: softFadeUp 0.9s cubic-bezier(0.25,1,0.5,1) both;
  animation-delay: 0.15s;
}
div[style*="display: flex"] > div:last-child {
  animation: softFadeUp 0.9s cubic-bezier(0.25,1,0.5,1) both;
  animation-delay: 0.35s;
}



/* --- 10. Natural Highlight Color --- */
::selection {
  background-color: #E2E8E4 !important; 
  color: #3E4A41 !important; 
}

/* --- 11. Profile Column --- */
.profile-column {
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.4) !important; 
  padding: 30px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(90, 107, 93, 0.1) !important; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

/* --- 12. Journal Galleries --- */


.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px; 
}


.grid-item img {
  width: 100%;
  height: 180px; 
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid-item img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 107, 93, 0.15); 
}

/*Display Card */
.poem-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(90, 107, 93, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  max-width: 450px; /* Forces the card to be thin */
  margin: 0 auto;
}

/* Smaller typography for Poetry */
.poem-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em; /* Reduced the font size */
  color: #4A4A4A;
  line-height: 1.6;
  white-space: pre-wrap; /
}

.image-grid { gap: 15px; }
.grid-item img { height: 180px; } /* Shrinks the sketches */
.poem-card { max-width: 450px; padding: 30px; } /* Makes the poem card thin */
.poem-text { font-size: 1.1em; }

/* --- Poem Expand/Collapse Styling --- */
details { cursor: pointer; }
summary { list-style: none; outline: none; }
summary::-webkit-details-marker { display: none; } /* Hides default ugly arrows */
.poem-preview {
  border-bottom: 1px dashed rgba(90, 107, 93, 0.3);
  padding-bottom: 5px;
  transition: opacity 0.2s;
}
.poem-preview:hover { opacity: 0.7; }

/* --- 13. Mobile & iPad Layout --- */
@media (max-width: 768px) {
  .main-content p:not(.poem-text) {
    text-align: left !important;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
 
  .grid-item img {
    height: 140px !important; 
  }

  .main-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .poem-card {
    padding: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .poem-text {
    font-size: 1rem !important; 
    overflow-x: auto; 
    white-space: pre !important;
  }
}

  .poem-text {
    font-size: 1.1em !important; 
  }
}
