/* ===== Root & Utilities ===== */
:root {
  --bg-dark: #111;
  --bg-light: #f5f5f5;
  --accent: #c99d66;
  --text: #333;
  --radius: 0.75rem;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-light);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, 1200px);
  margin-inline: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-two {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== Header ===== */
.site-header {
  background: var(--bg-dark);
  padding: 0.75rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  background: url("https://i.pinimg.com/originals/68/d8/7e/68d87e721d57bef53bd7b534857cd49f.jpg") center/cover
    no-repeat;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 5rem 0 6.5rem;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw + 1rem, 3.8rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero em {
  font-style: normal;
  color: var(--accent);
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #111;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: #e0b17f;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #222;
}

/* ===== About ===== */
.about {
  padding: 4.5rem 0;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-top: 0;
  color: var(--bg-dark);
}

.about p {
  margin: 0.75rem 0 0;
}

/* ===== Rings Grid ===== */
.rings-section {
  padding: 4.5rem 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--bg-dark);
}

.rings-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ring-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ring-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ring-card h3 {
  margin: 0.75rem 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg-dark);
}

.ring-card .price {
  margin: 0.35rem 1rem 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.shop-btn {
  display: block;
  text-align: center;
  margin: 0 1rem 1.25rem;
  padding: 0.5rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.shop-btn:hover {
  background: #222;
}

.ring-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

/* ===== CTA ===== */
.cta {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 4rem 0;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: #888;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

.social {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.social a {
  font-size: 1.25rem;
  text-decoration: none;
  color: #888;
  transition: color var(--transition);
}

.social a:hover {
  color: #fff;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 600px) {
  .hero {
    text-align: center;
  }
  .hero-content {
    margin-inline: auto;
  }
  .rings-grid img {
    height: 260px;
  }
}
