/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}
.container{
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

/* ===== Top Header ===== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
}

.top-header .contact span {
  margin-right: 15px;
}

.top-header .social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .social a:hover {
  color: #f39c12;
}

/* ===== Navigation ===== */
/* Navbar base */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 10px 20px;
}

nav .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  display: block;
}

.nav-links a:hover {
  background: #444;
  border-radius: 4px;
}
/* Hide dropdown by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #000;
}

.dropdown-content li a:hover {
  background-color: #ddd;
}

/* Optional: style for dropdown button */
.dropbtn {
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
}



.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}



/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 42px;
  line-height: 1.4;
}

/* ===== About Section ===== */
.about-section {
  padding: 60px 30px;
  text-align: center;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #222;
}

.card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 14px;
}

/* ===== Collection Section ===== */
.collection-section {
  padding: 60px 30px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card .card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
}

.collection-card h2, .collection-card h3 {
  margin-bottom: 8px;
}

.collection-card .btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s;
}
.collection-card .btn:hover {
  background: #d35400;
}

.large-card {
  grid-row: span 2;
}

/* ===== Scroll To Top Button ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f39c12;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
#scrollTopBtn:hover {
  background: #d35400;
}

.left img{
  width: 500px;
  height: 600px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 30px;
    padding: 15px;
    border: 1px solid #ddd;
  }
  .menu-toggle {
    display: block;
  }
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .large-card {
    grid-row: auto;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.features-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.features-left {
  flex: 1;
}

.features-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.features-right {
  flex: 1;
  padding: 20px 40px;
}

.features-right h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.features-right ul {
  list-style: none;
}

.features-right ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

.features-right ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: orange;
  font-weight: bold;
}


/* Responsive */
@media(max-width: 900px) {
  .features-section {
    flex-direction: column;
    text-align: center;
  }
  .features-right {
    padding: 20px;
  }
}

.choose-us {
  text-align: center;
  padding: 40px;
  background-color: #f4f4f4;
}

.choose-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.choose-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  position: relative;
  width: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #4CAF50, #00BCD4);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
}

/* Left section */
.footer-left a {
  color: white;
  text-decoration: underline;
}

/* Center social icons */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right section */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right span {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
