
html{
  scroll-behavior: smooth;
}



:root {
  --bg-light: #fafafa;
  --bg-dark: #111111;
  --text-main: #1a1a1a;
  --text-muted: #777;
  --accent: #c9b37e;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.6;
}

#title{
  color: #cfb220;
  text-shadow:0px -2px 0px #ebf749,0px 2px 0px #94751a  , 0px 3px 6px  #00000053;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background-color: #ded6d3 !important;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.hero-image{
position: absolute; 
width: 100%; 
opacity: 0;
transition: opacity 1.5s ease-out;
}


/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* //background: rgba(0,0,0,0.45); */

.hero-content {
  margin: auto;
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
  padding-top: 200px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #c5ba63;
  margin-bottom: 20px;
}

.btn {
    z-index: 50;
    cursor: pointer;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* ABOUT */
.section {
  padding: 120px 8%;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 20px;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}


.about p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* COLLECTION */
.collection {
  background: #fff;
  text-align: center;
}

.collection h2 {
  font-size: 2.5rem;
  margin-bottom: 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

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

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.cta p {
  color: #ccc;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.85rem;
  color: #777;
}

#paragraph{
  text-shadow: 0px 0px 3px#1a1a1a;
}

.discover{
  text-align: center;
}

.discover h3 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    
}
.discover h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    
}

.discover p {
    color: var(--text-muted);
    margin-bottom: 30px;
    
}