body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #111;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  color: #fff;
}

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

.logo, .hero-logo {
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 2px 8px #0002;
}

.logo {
  height: 48px;
  margin-right: 1rem;
  filter: drop-shadow(0 2px 8px #0008);
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #aaa;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('assets/header virgins apparel.png') center center/contain no-repeat;
  filter: blur(8px) brightness(0.7);
  opacity: 0.95;
  pointer-events: none;
}

.hero-content-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 380px;
  min-height: 340px;
  width: 60vw;
  max-width: 500px;
  height: auto;
  background: rgba(0,0,0,0.82);
  border-radius: 2.5rem;
  z-index: 1;
  box-shadow: 0 4px 32px #000a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}

@media (max-width: 700px) {
  .hero-content-bg {
    min-width: 0;
    width: 95vw;
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  background: none;
  padding: 3rem 1rem 2rem 1rem;
  animation: fadeIn 1.2s ease;
}

.hero > *:not(.hero-bg):not(.hero-content-bg) {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 16px #000a);
  animation: slideUp 1.2s cubic-bezier(.4,0,.2,1);
}

.tagline {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

section {
  max-width: 700px;
  margin: 3rem auto 2rem auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
}

h2, h3 {
  margin-bottom: 1.2rem;
}

a {
  color: #fff;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: #000;
  color: #fff;
  font-size: 1rem;
  margin-top: 2rem;
  animation: fadeIn 1.2s ease;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-logo {
    width: 80px;
  }
  .tagline {
    font-size: 1.2rem;
  }
  section, .products {
    margin: 2rem 0.5rem 1.5rem 0.5rem;
    padding: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero, .about, .shop, .contact, .navbar, footer {
  animation: fadeIn 1.2s ease;
}

.hero-logo, .tagline {
  animation: slideUp 1.2s cubic-bezier(.4,0,.2,1);
}

.products {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  animation: fadeIn 1.2s ease;
}

.product-category {
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #111;
  border-radius: 1rem;
  box-shadow: 0 2px 8px #0006;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  transition: transform 0.2s;
  animation: fadeIn 1.2s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  perspective: 800px;
}

.product-image img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
  backface-visibility: hidden;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}

.product-image .front {
  z-index: 2;
  opacity: 1;
}

.product-image .back {
  z-index: 1;
  opacity: 0;
}

.product-card:hover .product-image .front {
  opacity: 0;
}

.product-card:hover .product-image .back {
  opacity: 1;
}

.product-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 1px;
}

.shop-embed-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px #0004;
  background: #fff;
}

.shop-embed-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 700px) {
  .shop-embed-container iframe {
    min-height: 400px;
    height: 60vw;
  }
}

.shop-link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.shop-bonfire-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 2.5rem;
  text-decoration: none;
  box-shadow: 0 2px 16px #0004;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
}

.shop-bonfire-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #0006;
  text-decoration: none;
}

.shop-bonfire-btn.small {
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 1.5rem;
  margin-top: 0.7rem;
  box-shadow: 0 1px 6px #0002;
}

html {
  scroll-behavior: smooth;
}

.section-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-nav-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 2.5rem;
  text-decoration: none;
  box-shadow: 0 2px 16px #0004;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
  border: 2px solid #fff;
}

.section-nav-btn:hover {
  background: #111;
  color: #fff;
  border: 2px solid #fff;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

@media (max-width: 700px) {
  .section-buttons {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .section-nav-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
}

.about-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-logo {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  padding: 32px;
  box-shadow: 0 4px 32px #0002;
  object-fit: contain;
  display: block;
}

.about-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  margin-top: 0;
  letter-spacing: 1px;
}

.about-message {
  text-align: center;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.contact {
  text-align: center;
  margin-top: 4rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.contact-list li {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.15rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
}

.contact-list a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}

.about-logo-container {
  margin-top: 2.5rem;
} 