/* assets/style.css - main dark theme */

:root {
  --bg: #0d0d0d;
  --surface: #111;
  --muted: #bdbdbd;
  --accent: #ff85b3;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: var(--bg);
  color: #f5f5f5;
}

/* Header & Navigation */
header {
  text-align: center;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

header .title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

header .logo,
header .logo-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 6px rgba(255, 133, 179, 0.4);
}

@media (max-width: 640px) {
  header .logo,
  header .logo-small {
    width: 35px;
    height: 35px;
  }
}

header h1 {
  margin: 0.5rem 0;
  color: var(--accent);
  font-size: 1.5rem;
}

header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

nav a {
  margin: 0 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffb6c9;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1.5rem;
}

.hero-img {
  width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 133, 179, 0.3);
}

.hero-text {
  max-width: 500px;
}

.hero-text h2 {
  color: var(--accent);
}

.hero-text p {
  color: var(--muted);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.85;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.gallery img {
  width: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* About & Contact */
section.about,
section.contact {
  padding: 2rem 1rem;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

section.about h2,
section.contact h2 {
  color: var(--accent);
}

section.about p,
section.contact p {
  color: var(--muted);
  line-height: 1.6;
}

section.contact ul {
  list-style: none;
  padding: 0;
}

section.contact li {
  margin: 0.6rem 0;
  color: var(--muted);
}

section.contact a {
  color: var(--accent);
}

/* Footer */
footer {
  background: var(--surface);
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  margin-top: 2rem;
}

footer a {
  color: var(--accent);
}

/* === Carousel Styling === */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  border-radius: 10px;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background: rgba(255,133,179,0.4);
}

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

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: var(--accent);
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.2s;
}

@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
