body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 18px;
}

header {
  background: #e0f2fe;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10vw;
  background: #e0f2fe;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background: #e0f2fe;
  margin: 0 10vw;
  z-index: 20;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 1.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #2563eb;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover {
  background: #bae6fd;
  color: #1d4ed8;
}

main.container {
  margin: 0;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #ebf8ff; /* blue-100 */
}

.hero-rotator {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
}

.img-small {
  border-radius: 8px;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-start{
  opacity: 1;
}

.artist-statement {
  background: #4a92db;
  padding: 2rem 0;
}

.artist-title-wrapper {
  width: 100%;
}

.artist-title {
  padding: 20px 0;
  margin: 0 auto;
  width: fit-content;
  font-size: 3rem;
}

.artist-grid-wrapper {
  display: block;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 10%;
  overflow-y: hidden;
}

.view-my-work {
  background: #e0f2fe;
  padding: 2rem 0;
  justify-content: space-evenly;
}

.view-my-work-title-wrapper {
  width: 100%;
}

.view-my-work-title {
  color: #1e40af; /* blue-800 */
  padding: 20px 0;
  margin: 0 auto;
  width: fit-content;
  font-size: 3rem;
}

.view-my-work-grid-wrapper {
  display: block;
}

.view-my-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 10vw;
  padding: 0 10%;
}

.artist-card {
  text-align: left;
  grid-row: span 2;
}

.artist-card-image-container {
  height: 20rem;
  overflow: hidden;
} 

.artist-card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} 

.artist-card-section-title h1 {
  font-size: 3rem;
}

.artist-card-book-discovery {
  grid-row: span 2;
  height: 30rem;
  background-image: url("/assets/about_image-258fa61b.jpg");
  background-repeat: no-repeat;
  justify-content: center;
  border-radius: 8px;
}

.artist-card-book-discovery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4rem;
}

.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #4a92db;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.testimonial-author-image img {
  margin-top: 3rem;
  width: 5%;
  border-radius: 50%;
}

.testimonial-author {
  color: white;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.testimonial-nav-left {
  left: 3.5rem;  
}

.testimonial-nav-right {
  right: 3.5rem;
}

.testimonial-container {
  position: relative;
  width: 100%;
  height: 355px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.testimonial-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-indicators {
  display: flex;
  position: absolute;
  bottom: 1.5rem;
  gap: 8px;
  margin-top: 1rem;
  z-index: 2;
}

.testimonial-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-text {
  color: white;
  width: 70%;
  margin: 0 auto 1rem auto;
}

.testimonial-indicator.active {
  background: white;
}

.testimonial .btn-read-more {
  max-width: fit-content;
  margin: auto;
  color: white;
  border-color: white;
}

.book-discover-call {
  background: #e0f2fe;
  padding: 2rem 10%;
  margin: 0 auto;
  text-align: center;
}

.book-discover-call-title {
  font-size: 3rem;
}

.book-discover-call-content {
  margin: 5vw auto;
}

.follow-me {
  background: #aed6f1;
  padding: 4rem 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.follow-me-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.follow-me-title {
  font-size: 2.5rem;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2563eb;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: 1.5rem
}

.social-icon-link:hover {
  transform: translateY(-5px);
  color: #1d4ed8;
}

/* Instagram-specific styling */
.instagram-icon {
  color: #e1306c;
}

/* Twitter-specific styling */
.twitter-icon {
  color: #1da1f2;
}

/* Image Ribbon Styles */
.image-ribbon {
  width: 100%;
  overflow: hidden;
}

.ribbon-container {
  display: flex;
  height: 180px;
}

.ribbon-image {
  flex: 1;
  width: auto;
  object-fit: cover;
}

.tb-link {
  padding: 0.25rem;
  text-decoration: underline;
  display: inline-block;
  transition: background 0.2s;
}

.tb-link:hover {
  background: #cffafe; /* cyan-100 */
}

.btn {
  background-color: transparent;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 1px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}

.btn-read-more {
  color: #222;
  border: 2px solid #000000;
}

.btn-read-more:hover {
  background: #2563eb; /* blue-700 */
  color: #fff;
}

.btn-discover-call {
  background: #3b82f6;
  color: #fff;
}

.btn-discover-call:hover {
  background: #2563eb;
  color: #fff;
}

.main-footer {
  background: #1e3a8a; /* blue-900 */
  color: #fff;
  padding: 2rem 10vw;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  margin: 0 10vw;
  gap: 2rem;
  padding: 2rem 0;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link a:hover {
  color: #7dd3fc;
}

.footer-rights{
  font-size: 12px;
}