/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color variables */
:root {
  --white: #ffffff;
  --gold: #c9a24d;
}

/* Base */
html, body {
  height: 100%;
  background-color: var(--white);
  font-family: "Playfair Display", serif;
  overflow: hidden;
}

/* Layout */
.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.content {
  text-align: center;
}

/* Logo */
.logo {
  max-width: 180px;
  width: 100%;
  margin-bottom: 28px;
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 22px auto;
  opacity: 0.9;
}

/* Text */
.subtitle {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 1.6s ease-out forwards;
  opacity: 0;
}

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

/* Grain texture */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.08; /* subtle, luxury */
}
