/*
 * Vibe Haus Website Styles
 *
 * A sophisticated black and glowing gold palette designed to evoke the warmth
 * of candlelight and the precision of illuminated architecture. This stylesheet
 * crafts an immersive scrolling experience for high‑end event clients.
 */

/* Root variables for easy theming */
:root {
  --color-black: #0a0a0c;
  --color-dark: #141414;
  --color-gold: #d8b25f;
  --color-gold-light: #f2d084;
  --color-white: #ffffff;
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* Global reset and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-gold-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--color-gold-light);
}

a {
  text-decoration: none;
  color: var(--color-gold);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-white);
}

/* Utility classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

/* Site header & navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand img {
  height: 45px;
}

.navigation {
  display: flex;
  gap: 1.5rem;
}

.navigation a {
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
}

.navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.navigation a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn.btn-primary:hover {
  background-color: var(--color-gold-light);
  color: var(--color-black);
}

.btn.btn-secondary {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.btn.btn-secondary:hover {
  background-color: var(--color-gold-light);
  color: var(--color-black);
}

/* Hero section */
.hero {
  height: 100vh;
  /* Use the PNG file for proper display */
  background: url('images/hero.png') center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6rem;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--color-gold-light);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Collections section */
.collections .collection-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.collections .card {
  background-color: var(--color-dark);
  border: 1px solid rgba(216, 178, 95, 0.2);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.collections .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.collections .card h3 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.collections .card p {
  font-size: 0.95rem;
  color: var(--color-gold-light);
}

.collections .card ul {
  list-style-type: none;
  margin: 1rem 0;
  padding-left: 0;
}

.collections .card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.4rem;
}

.collections .card ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.collections .card .price {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-gold);
}

/* Story section */
.story .story-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-gold-light);
}

.story .story-content p + p {
  margin-top: 1.5rem;
}

/* Standards section */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.standard-item {
  background-color: var(--color-dark);
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.standard-item:hover {
  background-color: #1c1c1e;
}

.standard-item h3 {
  margin-bottom: 0.5rem;
  color: var(--color-gold);
  font-size: 1.3rem;
}

.standard-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-gold-light);
}

/* Booking section */
.booking-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-gold-light);
}

.booking-content p + p {
  margin-top: 1.5rem;
}

.booking-content .btn {
  margin-top: 2rem;
}

/* Gallery section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(0.9);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  filter: brightness(1);
}

/* Contact section */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-gold-light);
}

.contact-info {
  margin: 2rem 0;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--color-gold);
}

.contact-info a:hover {
  color: var(--color-white);
}

/* Footer */
.site-footer {
  background-color: var(--color-dark);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

.site-footer .small-text {
  margin-top: 0.5rem;
  color: var(--color-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navigation {
    display: none;
  }
  .nav-container {
    justify-content: center;
  }
  h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}