
body {
    font-family: 'Bree Serif', serif;
    background-color: #fdfaf6; 
    font-size: 1.1rem; 
    padding-top: 0px; 
  }

  .hero-banner {
    margin-top: 140px;
  }

  .hero-banner .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 3rem; 
  }
  
  

  h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
  }

  .navbar-brand img {
    transition: transform 0.4s ease;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.05) rotate(-1deg);
    cursor: pointer;
  }
  
 
  .navbar-nav .nav-link {
    font-family: 'Bree Serif', serif;
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #000000; 
    padding-left: 15px;
    padding-right: 15px;
  }
  
  
  .navbar-nav .nav-link:hover {
    color: #ffc107; 
  }
  
 
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }
  
  .fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  
.voo-note {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff7e7; 
    color: #333;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .footer {
    background-color: #ffc107; 
    color: #000000; 
    font-family: 'Bree Serif', serif;
    font-size: 1rem;
    padding: 1.5rem 0; 
    margin-top: 2rem;
  }
  
  .footer a {
    color: #000000; 
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }


.custom-book-card {
  flex: 0 0 18%;
  max-width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-book-card h3 {
  font-size: 1.2rem;
  min-height: 2.5em;
}


.square-card {
  width: 100%;
  padding-top: 100%; 
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.square-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem; 
}

.welcome-paragraph {
  font-family: 'Bree Serif', serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.btn-warning {
  background-color: #ffc107;
  color: #000; 
  border: none;
}

.btn-warning:hover {
  background-color: #dda90e; 
  color: #000; 
}

@media (max-width: 768px) {
  .hero-banner img {
    max-height: 250px; 
    object-fit: cover;
  }
}

@media (max-width: 992px) {
  .custom-book-card {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (max-width: 768px) {
  .custom-book-card {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (max-width: 576px) {
  .custom-book-card {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 2.2rem;
  }

  .welcome-paragraph {
    font-size: 0.95rem;
  }
}

/* === Hero Heading === */
.welcome-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive size */
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Hero paragraph styling */
.welcome-paragraph {
  max-width: 700px;         /* limits line length for readability */
  margin: 0 auto;           /* centers it horizontally */
  font-size: 1.1rem;        /* slightly smaller text */
  line-height: 1.6;         /* nice spacing for comfort */
  text-align: center;       /* aligns text under the hero heading */
}

/* === Gallery Title === */
.gallery-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  font-size: 1.5rem !important;   /* Increased size for clarity */
  font-weight: bold !important;     /* Slightly bold for visibility */
  color: #000 !important;          /* Keeps text readable on light backgrounds */
  letter-spacing: 0.5px;           /* Adds a clean, modern touch */
}

.navbar-nav .nav-link:hover {
  color: #ffb700 !important; /* adds my brand color on hover */
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  background-color: #ffb700; /* my brand yellow */
  color: #000; /* black text for readability */
  font-weight: bold;
  border: 2px solid #000;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}