/* --------------------------
   General Body
---------------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdf6f0; /* soft pastel beige background */
    color: #5a4a3f; /* main text color */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* --------------------------
   Navbar
---------------------------- */
.navbar {
    background-color: #f7f2ec; /* light beige */
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.3rem;
    color: #5a4a3f !important;
}

.navbar-nav .nav-link {
    color: #5a4a3f !important;
    font-weight: 500;
    margin-left: 15px;
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid #5a4a3f;
    padding-bottom: 5px;
}

/* --------------------------
   Hero Section
---------------------------- */

 .hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    background-image: url('../images/hero-banner.jpg'); /* path relative to css file */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%; /* <-- change this value to show more top or bottom */
   /* optional: keep hero under the navbar without adding extra layout margin */
   margin-top: 0;
}

.extra-images {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.extra-images img.thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 6px;
}



header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
}

.btn-light {
    background-color: #fdf6f0;
    color: #5a4a3f;
    border: 2px solid #5a4a3f;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #e0d4c5;
    color: #5a4a3f;
    transform: translateY(-2px);
}

/* --------------------------
   Featured Collection
---------------------------- */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-title {
    font-weight: 600;
    color: #5a4a3f;
}

.card-text {
    font-weight: 500;
    color: #7b6654;
}

/* --------------------------
   Footer
---------------------------- */
footer {
    background-color: #f3e8de;
    color: #5a4a3f;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
}

/* --------------------------
   WhatsApp Floating Button
---------------------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    text-decoration: none;
}


/* --------------------------
   Responsive Typography
---------------------------- */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

