/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --dark-gray: #1a1a1a;
  --accent: #c8a97e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--white); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 3px;
}

/* ===== PRODUCT GRID ===== */
.products-section {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--dark-gray);
  overflow: hidden;
  transition: transform 0.3s;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-info .price {
  font-size: 15px;
  color: var(--light-gray);
}

.product-info .price .original {
  text-decoration: line-through;
  color: var(--gray);
  margin-right: 10px;
}

.product-info .price .sale {
  color: var(--white);
}

.view-all-link {
  text-align: center;
  margin-top: 50px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  margin-top: 80px;
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.about-content {
  padding: 60px 0 80px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.about-content p {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.contact-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.contact-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 20px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.contact-block:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ===== SIMPLE PAGE (help, terms) ===== */
.simple-page {
  min-height: calc(100vh - 80px);
  padding: 140px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.simple-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.simple-page p {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ===== SHOP PAGE TITLE ===== */
.page-header {
  padding-top: 130px;
  padding-bottom: 40px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--gray);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col p a { color: var(--gray); transition: color 0.3s; }
.footer-col p a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 13px;
}

.footer-bottom .social a {
  color: var(--gray);
  font-size: 18px;
  transition: color 0.3s;
}

.footer-bottom .social a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    gap: 0;
  }

  .nav-links.active { display: flex; }

  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

  .hero-content h1 { font-size: 36px; letter-spacing: 4px; }

  .product-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .contact-block { padding: 16px 32px; font-size: 16px; }

  .contact-section h1 { font-size: 32px; }

  .section-title { font-size: 28px; }

  .page-header h1 { font-size: 36px; }
}
