@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #fdf6f7; 
    color: #5c5c5c; 
    line-height: 1.6;
    display:flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 2px solid #fde4e8;
    text-align: center;
    grid-area: a;
    flex-shrink: 0;
}

header h1 {
    color: #f2a2b9; 
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header .nav a {
    color: #5c5c5c;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header .nav a:hover {
    color: #f2a2b9;
}


.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #fde4e8, #fdf6f7);
}

.hero h2 {
    font-size: 2.8rem;
    color: #e88fab;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


.gallery-container {
    padding: 4rem 0;
}

.gallery-container h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #e88fab;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(232, 143, 171, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.gallery-item-title {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    color: #5c5c5c;
}
main{
    flex-grow: 1;
}

footer {
    background: #f2a2b9;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    flex-shrink: 0;
}

footer p {

    margin: 0;
    

}





.dropdown {
  position: relative;
  display: inline-block;
  margin: 0 15px; 
}

.dropbtn {

  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  color: #5c5c5c;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 10; 
  

  top: 100%;
  left: 50%; 
  transform: translateX(-50%);
  

  background-color: #fff;
  min-width: 200px; 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 0.5rem 0; 
}

.dropdown-content a {
  color: #5c5c5c;
  padding: 12px 20px; 
  text-decoration: none;
  display: block; 
  transition: background-color 0.3s ease, color 0.3s ease;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #f2a2b9;
}

.dropdown-content a:hover {
  background-color: #fdf6f7; 
  color: #e88fab; 
}
.icon {
   height: 1.1em;
   width: 1.1em;
   vertical-align: middle;
   margin-left: 0.5rem;
   filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

/* Cart Badge */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #e88fab;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
