/* ============================= */
/* 4K Silk Velvet Background     */
/* ============================= */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #2f2f2f;

  background-color: #f3f2ef;
  background-image: url("./assets/white-velvet-silk-4k.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/* Soft top-left lighting */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.18) 40%,
      rgba(0,0,0,0.06) 100%
    );
}

/* ============================= */
/* Layout                        */
/* ============================= */

.layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}

/* ============================= */
/* Sidebar                       */
/* ============================= */

.sidebar {
  background: rgba(245, 244, 241, 0.85);
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 110px;
  margin: 0 auto 20px auto;
  display: block;
}

.brand-name {
  text-align: center;
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 30px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-item {
  text-decoration: none;
  color: #444;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 16px;
}

.menu-item:hover {
  background: rgba(0,0,0,0.05);
}

.contact {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* ============================= */
/* Main Content                  */
/* ============================= */

.main {
  padding: 140px 40px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ============================= */
/* Hero Section                  */
/* ============================= */

.hero {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.subtext {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 25px;
}

/* ============================= */
/* Buttons                       */
/* ============================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 28px;

  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;

  color: #ffffff;
  background: linear-gradient(180deg, #7a0c10, #5f070a);

  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 28px;

  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;

  color: #555;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.6);
}

/* Larger CTA at bottom */
.btn-large {
  height: 48px;
  font-size: 16px;
}

/* ============================= */
/* Lower CTA Section             */
/* ============================= */

.lower-cta {
  text-align: center;
  margin-top: 120px;
}

.lower-cta p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 18px;
}

/* ============================= */
/* Responsive                    */
/* ============================= */

@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .main {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}