/* ===== Gallery ===== */
.gallery-container {
  width: 95%;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  background: #fff;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.gallery-slide img:hover {
  transform: scale(1.05);
}

/* Nav Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
  text-align: center;
  padding: 15px;
  background: #fff;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: #333;
}

/* ===== About Section ===== */
.about-section {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
  color: #333;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  font-weight: bold;
}

.about-section h1 span {
  color: #007bff; /* Kiana Tiles Blue */
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 15px 0;
  padding: 0 20px;
}

.about-section strong {
  color: #0077cc;
}


/* Product Section */

/* General gallery styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
  padding: 20px;
}

/* Each tile */
.tile {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}

/* Tile sizes */
.tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2; /* Big main image */
}

.tile:nth-child(2) {
  grid-row: span 1.5;
}

.tile:nth-child(3) {
  grid-row: span 1;
}

.tile:nth-child(4) {
  grid-row: span 1.5;
}

.tile:nth-child(5) {
  grid-row: span 1;
}

/* Overlay text */
.overlay h2 {
  margin: 0;
  font-size: 1.5rem;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 1rem;
}

.explore-btn {
  color: white;           /* Link text color */
  text-decoration: none;     /* No underline by default */
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-btn:hover {
  text-decoration: underline;  /* Underline on hover */
  color: blue;              /* Optional: change color on hover */
}