/* ==== GLOBAL STYLES ==== */
body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgb(248, 250, 255);
  color: rgb(30, 30, 30);
  scroll-behavior: smooth;
}

/* ==== NAVIGATION ==== */
.navigation {
    position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: rgb(9, 169, 222);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: cursive;
  font-size: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  margin: 0 15px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  transition: all 0.3s ease;
}

.nav:hover {
  color: rgb(230, 242, 255);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
}

.dropdown-content a {
  color: rgb(40, 40, 40);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: rgb(235, 245, 255);
  color: rgb(9, 169, 222);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.arrow{
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.arrow::after {
  content: '▲' ; 
  margin-left: 5px;
  line-height: 1px;
  font-size: 12px;
  color: white;
}

/* Change to arrow down on hover */
.arrow:hover::after {
  content: '▼';
}


/* ==== HOMEPAGE SECTION ==== */
.king {
  font-size: 30px;
  font-family: cursive;
}

.homepage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgb(230, 245, 255), rgb(255, 255, 255));
  padding: 5% 8%;
  border-radius: 40px;
  margin: 2%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.intro {
  flex: 1;
  font-size: 28px;
  padding: 40px;
  border-radius: 30px;
  color: rgb(25, 25, 25);
}

.intro p {
  font-size: 18px;
  margin-top: 20px;
  color: rgb(70, 70, 70);
  line-height: 1.6;
}

.button {
  margin-top: 40px;
}

.button a {
  background-color: rgb(9, 169, 222);
  padding: 12px 24px;
  color: white;
  font-size: 15px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.button a:hover {
  background-color: rgb(61, 188, 255);
  box-shadow: 0 0 10px rgba(61, 188, 255, 0.8);
}

.ihome {
  flex: 1;
  max-width: 600px;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.ihome:hover {
  transform: scale(1.02);
}

.num a{
  text-decoration: none;
  color: black;
}

/* ==== OPTIONS SECTION ==== */
.options {
  background-color: rgb(245, 247, 250);
  margin: 40px;
  border-radius: 40px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.uimg {
  margin: 20px;
  height: 280px;
  width: 280px;
  border-radius: 30px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uimg:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(9, 169, 222, 0.6);
}

/* ==== NEW COLLECTION ==== */
.new {
  background-color: rgb(245, 247, 250);
  margin: 40px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding-bottom: 3%;
}

.new h1 {
  text-align: center;
  padding-top: 3%;
  color: rgb(9, 169, 222);
  text-shadow: 0 0 6px rgba(9, 169, 222, 0.2);
  font-weight: 600;
  font-size: 2rem;
}

.cleo {
  height: 500px;
  width: 90%;
  display: block;
  margin: 30px auto;
  border-radius: 40px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cleo:hover {
  box-shadow: 0 0 20px rgba(9, 169, 222, 0.5);
  transform: scale(1.02);
}

/* ==== FOOTER / CONTACT ==== */
.fb {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: box-shadow 0.3s ease;
}

.fb:hover {
  box-shadow: 0 0 10px rgba(9, 169, 222, 0.8);
}

.num {
  font-size: 20px;
  margin-top: 15px;
  margin-right: 30px;
  display: block;
  color: rgb(40, 40, 40);
}

.search-box {
  position: relative;
  margin-left: 20px;
}

.search-box input {
  width: 220px;
  padding: 10px 16px;
  border-radius: 999px; /* super soft round */
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: all 0.25s ease;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-box input:focus {
  border-color: #1da1f2;
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.25);
}

/* 🔽 Search dropdown */
#searchResults {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 999;
}

/* Result item */
#searchResults a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}

#searchResults a:hover {
  background: #f5f7fa;
}



/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    font-size: 90%;
  }

  .homepage {
    flex-direction: column;
    text-align: center;
  }

  .ihome {
    width: 90%;
    margin: 20px 0;
  }

  .intro {
    font-size: 22px;
    padding: 20px;
  }

  .intro p {
    font-size: 16px;
  }

  .uimg, .cleo {
    width: 90%;
    height: auto;
  }

  .new h1 {
    font-size: 1.5rem;
  }

  .fb {
    height: 40px;
    width: 40px;
  }

  .num {
    font-size: 16px;
    margin-left: 40px;
  }
}


