
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f0b4d8;
  color: #444;
}

/* nav centering */
.nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #f0b4ce;
  padding: 1rem;
}

.nav a {
  text-decoration: none;
  color: #8d089f;
  font-weight: bold;
  background: white;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
}
.nav a:hover {
  
  color: rgb(188, 188, 242);

}


/* for text*/
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #ffe3f1, #fff5fb);
}

.hero h1 {
  color: #ff5fa2;
}


/* Carousel */
.carousel {
  max-width: 1000px;      
  height: 240px;          
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 8px;     
  position: relative;
      
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}
/* Book club section */
.bookclub {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 18px;
  text-align: center;
}

.bookclub h2 {
  color: #b94a7c;
  margin-bottom: 0.5rem;
}

.bookclub p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bookclub-form input,
select {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.bookclub-form button {
  width: 100%;
  background: #ff9ecb;
  border: none;
  padding: 0.8rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}







/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 2rem;
}

/* GALLERY */
.gallery {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  display: grid;
  gap: 2rem;
}

.gallery-item {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
}

.gallery-item img {
  border-radius: 15px;
}

/* CONTACT */
.contact {
  max-width: 400px;
  margin: auto;
  padding: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

button {
  width: 100%;
  background: #ff9ecb;
  border: none;
  padding: 0.7rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  background-color: #f6f6f6;
}
/* TRADITIONAL CAROUSEL – NO IMAGE CROP */
section.carousel {
  max-width: 500px;
  height: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 0;
    
}

section.carousel img.slide {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* SHOW FULL IMAGE */
  
}

/* INTRO SECTION – FORCE VISIBILITY */
.intro {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem 1rem;
  text-align: center;
  background: #ffffff;          /* makes it visible */
  border-radius: 12px;
}

.intro h2 {
  color: #b94a7c;
  margin-bottom: 0.5rem;
}

.intro p {
  color: #555;
  line-height: 1.6;
}
section.carousel {
  background: #ffffff;
}
/* ABOUT US SECTION */
.about {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  text-align: center;
}

.about h2 {
  color: #b94a7c;
  margin-bottom: 1rem;
}

.about p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Staff Picks hover effect */
.gallery-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(150, 100, 200, 0.35);
}


