* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}


/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Shadow when scrolling */
.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c94f7c;
  margin-bottom: 0.5rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav a:hover {
  color: #c94f7c;
}

/* Active nav link */
.nav a.active {
  color: #c94f7c;
  font-weight: bold;
  border-bottom: 2px solid #c94f7c;
}


/* Hero Section */
.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
/* Gallery Section */
.gallery {
  padding: 2rem;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 1rem;
  color: #c94f7c;
}

/* Slider */
.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slides {
  position: relative; /* changed from flex */
  height: 400px;      /* give a height so slides show */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill the slide */
  border-radius: 8px;
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dots .active {
  background-color: #c94f7c;
}



/* About + Contact */
.about, .contact {
  padding: 2rem;
  text-align: center;
}

.about h2, .contact h2 {
  color: #c94f7c;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #f1f1f1;
  margin-top: 2rem;
}

/* Mobile Layout */
@media(max-width: 768px) {
  .nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}
