@charset "UTF-8";
/* CSS Document */
/* Reset + base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #222;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
	font-family:
.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} 
}
.logo img {
  height: 40px; 
	margin-top: 0.4px;/* Change based on your logo size */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav a {
 font-family: "superior-title", serif;
font-weight: 700;
font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: #d77aa2; /* Cherry Blossom pink */
  transition: color 0.3s ease, letter-spacing 0.2s ease;
}

nav a:hover {
  color: #a94e7a; /* deeper cherry */
  letter-spacing: 1px;
}

nav a.active {
  border-bottom: 2px solid #d77aa2;
  padding-bottom: 4px;
}




nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
nav a {
  text-decoration: none;
  color:darkgray;
  font-weight: 500;
}
.view-cart-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #f9e6ef;
  color: #a94e7a;
  border: 1px solid #f4c8da;
  padding: 10px 16px;
  border-radius: 30px;
 font-family: "lemonde-courrier", serif;
font-weight: 400;
font-style: normal;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(217, 112, 161, 0.2);
  transition: all 0.3s ease;
}

.view-cart-button:hover {
  background-color: #f4c8da;
  color: white;
  box-shadow: 0 6px 14px rgba(217, 112, 161, 0.4);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.shop-button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #e89bb4;
  color: #fff;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
font-family: "superior-title", serif;
font-weight: 700;
font-style: normal;
}
.shop-button:hover {
  background-color: #d77aa2;
}

.about-columns {
  padding: 120px 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 3rem;
}

.about-columns h1 {
font-family: "amandine", sans-serif;
font-weight: 700;
font-style: normal;
  font-size: 3rem;
  color:hsla(332,44%,47%,1.00);
  column-span: all;
  margin-bottom: 2rem;
  text-align: center;
	
}

.about-columns h2 {
  font-size: 2.0rem;
  color: #b86a93;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
font-family: "superior-title", serif;
font-weight: 700;
font-style: normal;
	
}

.about-columns p {
font-family: "lemonde-courrier", serif;
font-weight: 400;
font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  break-inside: avoid;
 color: hsla(0,6%,44%,1.00)
}

.dropcap {
  float: left;
  font-size: 3rem;
  line-height: 1;
  padding-right: 0.4rem;
  color: #e89bb4;
 ont-family: "basic-sans", sans-serif;
font-weight: 700;
font-style: normal;
}

.pull-quote {
font-family: "amandine", sans-serif;
font-weight: 400;
font-style: italic;
  font-size: 1.2rem;
  color: #C6107E;
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 3px solid #e89bb4;
  break-inside: avoid;
}

.shop-heading  {
 font-family: "amandine", sans-serif;
font-weight: 700;
font-style: normal;
  font-size: 3rem;
  color:hsla(332,44%,47%,1.00);
  column-span: all;
  margin-bottom: 2rem;
  text-align: center;
	
}

.product-footer {
  display: flex;
}

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

.product-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.product-card button {
  background-color: #e89bb4;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-card p{ margin-bottom: 0.5rem}
.product-card button:hover {
  background-color: #d77aa2;
	
}
.product-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* or center, depending on your layout */
  gap: 0.5rem;
  margin-top: 1rem;
}

.price {
  font-weight: bold;
  color: #d77aa2;
  font-size: 1rem;
}


.gallery-heading {
  text-align: center;
  font-size: 2rem;
  color:hsla(315,49%,40%,1.00);
  margin-bottom: 2rem;
font-family: "amandine", sans-serif;
font-weight: 700;
font-style: normal;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 120px 2rem 3rem;
}

.contact-heading {
  font-size: 2rem;
  color: #d77aa2;
  text-align: center;
  margin-bottom: 0.5rem;
font-family: "superior-title", serif;
font-weight: 700;
font-style: normal;
}

.contact-subtext {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-size: 1rem;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #e89bb4;
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #d77aa2;
}


