@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Joti+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bubblegum Sans', sans-serif;
  padding: 20px 10px;
  min-height: 100vh;
  margin: 0;
}

/* Day / Night background */
.day-theme   { background-image: linear-gradient(to bottom, orange, aqua); }
.night-theme { background-image: linear-gradient(to bottom, blue, aqua, pink, aqua, blue); }

/* ====================== CAROUSEL ====================== */
.gallery-carousel {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border: 16px solid #FF69B4;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  background: white;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.68, -0.3, 0.265, 1.35);
}

.slide {
  min-width: 100%;
  position: relative;
  background: linear-gradient(135deg, #FFB800, #FF8C00);
}

.slide img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: white;
  padding: 30px;
  text-align: center;
}

.content h1 {
  font-size: 3.8rem;
  margin-bottom: 12px;
  color: #FFFF00;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
}

.content p {
  font-size: 2rem;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Joti One', sans-serif;
  padding: 16px 36px;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 180px;
}

.btn:hover {
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-blue { background: #00D4FF; }
.btn-pink { background: rgba(255,173,91); }

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 70px;
  height: 70px;
  font-size: 3rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-btn:hover { background: rgba(255,105,180,0.9); }
.prev { left: 20px; }
.next { right: 20px; }

.play-pause-btn {
  position: absolute;
  bottom: 140px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(116,232,100,0.9);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 11;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.play-pause-btn:hover {
  background: #FF3366;
  transform: scale(1.1);
}

.top-banner {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}

.top-banner img {
  max-width: 22%;
}

/* Thumbnails */
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 25px 15px;
  background: rgba(0,0,0,0.95);
  overflow-x: auto;
  white-space: nowrap;
}

.thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid white;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.thumb:hover { transform: scale(1.15); border-color: #FF69B4; }
.thumb.active {
  border: 6px solid #FF3366;
  box-shadow: 0 0 0 4px #FFFF00;
  transform: scale(1.2);
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ====================== FOOTER ====================== */
.footer {
  background:#222;
  color:#999;
  text-align:center;
  padding: 100px 20px 80px;
  margin-top: 100px;
  font-size:16px;
  letter-spacing:1px;
}

.footer h3 {
  color:#fff;
  font-size:21px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:50px;
  position:relative;
}

.footer h3::after {
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
  width:63px;
  height:3px;
  background:#fff;
}

.footer-bot {
  max-width:1200px;
  margin:0 auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  margin-top: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
  text-align: center;
}

.footer-col img#logo {
  height:74px;
  margin-bottom:15px;
}

.footer-title {
  font-weight:600;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:8px;
}

.copy-right {
  margin-top:12px;
  font-size:14px;
}

.social {
  list-style:none;
  margin:20px 0 10px;
  padding:0;
}

.social li {
  display:inline-block;
  margin:0 12px;
}

.social a {
  color:#999;
  font-size:22px;
  transition: color 0.3s;
}

.social a:hover { color:#fff; }

.made-by {
  font-size:15px;
}

.fa-heart {
  color:rgba(46,118,252);
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

/* ====================== RESPONSIVE FOOTER ====================== */

/* Tablet: 2 columns (logo left, everything else stacked right) */
@media (min-width: 768px) and (max-width: 991px) {
  .footer-grid {
    justify-content: space-between;
  }

  /* Logo column */
  .footer-col:nth-child(1) {
    flex: 0 1 40%;
    max-width: 45%;
  }

  /* Location, Website, Social — stacked in the right column */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    flex: 0 1 50%;
    text-align: left;
  }
}

/* Desktop: 4 perfect horizontal columns */
@media (min-width: 992px) {
  .footer-grid {
    justify-content: space-between;
  }

  .footer-col {
    flex: 1 1 22%;
    max-width: 24%;
  }
}

/* Mobile carousel tweaks (footer already perfect on mobile) */
@media (max-width: 600px) {
  .content h1 { font-size: 2.6rem; }
  .content p { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 1.4rem; }
  .thumb { width: 60px; height: 60px; }
  .play-pause-btn { bottom: 120px; right: 15px; width: 50px; height: 50px; }
}