/* ===================================
   CSS Reset and Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: #d4d4d4;
  background-color: #0a0a0a;
  min-height: 100vh;
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8864e;
}

ul {
  list-style-position: inside;
}

/* ===================================
   Layout Components
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

/* ===================================
   Header and Navigation
   =================================== */

.site-header {
  background-color: #0f0f0f;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 3rem;
  width: auto;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: #d4d4d4;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-list a {
  color: #d4d4d4;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #c9a96e;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    flex-direction: column;
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 1.5rem;
    gap: 1.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  /* Added background image support with overlay */
  background: linear-gradient(135deg, rgba(26, 10, 15, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%),
    url("/placeholder.svg?height=800&width=1920") center / cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  /* Added z-index to ensure content appears above background */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a8a8a8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===================================
   Page Headers
   =================================== */

.page-header {
  background-color: #0f0f0f;
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}

.page-title {
  font-size: 2.5rem;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #a8a8a8;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #c9a96e;
  color: #0a0a0a;
  border-color: #c9a96e;
}

.btn-primary:hover {
  background-color: #b8864e;
  border-color: #b8864e;
  color: #0a0a0a;
}

.btn-secondary {
  background-color: #8b2635;
  color: #d4d4d4;
  border-color: #8b2635;
}

.btn-secondary:hover {
  background-color: #6b1d28;
  border-color: #6b1d28;
  color: #d4d4d4;
}

.btn-outline {
  background-color: transparent;
  color: #c9a96e;
  border-color: #c9a96e;
}

.btn-outline:hover {
  background-color: #c9a96e;
  color: #0a0a0a;
}

/* ===================================
   Content Sections
   =================================== */

.section-title {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 2rem;
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.intro-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.intro-image {
  width: 300px;
  height: auto;
  flex-shrink: 0;
}

.intro-text {
  flex: 1;
}

.intro-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.intro-text .section-text {
  margin: 0 0 1.5rem 0;
  max-width: none;
}

/* Responsive Intro */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }
  .intro-image {
    width: 200px;
  }
  .intro-text .section-title {
    text-align: center;
  }
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid Layouts */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-grid .content-card:nth-child(-n+3) {
  grid-column: span 2;
}

.services-grid .content-card:nth-child(n+4) {
  grid-column: span 3;
}

/* Responsive Grid for Services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .content-card {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.content-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.content-card:hover {
  border-color: #c9a96e;
}

.card-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.philosophy-section .section-title,
.philosophy-section .card-title,
.philosophy-section .card-text {
  text-align: center;
}

.info-section .section-title,
.info-section .card-title,
.info-section .card-text {
  text-align: center;
}

.card-text {
  color: #a8a8a8;
  line-height: 1.7;
}

.embeddable-buttondown-form {
  max-width: 400px;
  margin: 2rem auto 0;
}

.embeddable-buttondown-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #c9a96e;
  font-weight: 500;
}

.embeddable-buttondown-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #d4d4d4;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.embeddable-buttondown-form input[type="email"]:focus {
  outline: none;
  border-color: #c9a96e;
}

.embeddable-buttondown-form input[type="submit"] {
  background-color: #c9a96e;
  color: #0a0a0a;
  border: none;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.embeddable-buttondown-form input[type="submit"]:hover {
  background-color: #b8864e;
}

.subscribe-section .section-text {
  text-align: center;
}

.testimonial {
  font-style: italic;
  font-size: 1.75rem;
  text-align: center;
  color: #c9a96e;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
}

/* ===================================
   Services Page
   =================================== */

/* Session Styles Section */
.session-styles-section {
  padding: 3rem 0;
}

.session-styles-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.session-styles-photo {
  position: relative;
  order: 1;
}

.session-styles-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.session-styles-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2;
}

.session-style-category {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border-left: 3px solid #c9a96e;
}

.session-category-title {
  font-size: 1.1rem;
  color: #c9a96e;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.session-category-text {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.boundaries-section {
  padding: 2rem;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid #1a1a1a;
  margin-top: 1rem;
}

.boundaries-section .section-title {
  margin-bottom: 1rem;
}

.boundaries-list {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}

.boundaries-list li {
  color: #b8b8b8;
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
  font-size: 0.95rem;
}

.boundaries-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-weight: bold;
}

.service-block {
  display: flex;
  gap: 3rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.service-content {
  flex: 1;
  min-width: 300px;
}

.service-title {
  color: #c9a96e;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-description {
  color: #b8b8b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  color: #a8a8a8;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a96e;
}

.service-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  text-align: center;
}

.price {
  font-size: 2.5rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Responsive Services */
@media (max-width: 768px) {
  .session-styles-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .session-styles-photo {
    order: 2;
  }

  .session-styles-text {
    order: 1;
  }

  .service-block {
    flex-direction: column;
    padding: 2rem;
  }

  .service-pricing {
    min-width: 100%;
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .price {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .session-styles-content {
    grid-template-columns: 1fr;
  }

  .session-styles-text {
    gap: 1rem;
  }

  .session-style-category {
    padding: 1rem;
  }

  .session-category-title {
    font-size: 1rem;
  }

  .session-category-text {
    font-size: 0.9rem;
  }

  .service-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.75rem;
  }
}

/* ===================================
   Bookings Page
   =================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  text-align: center;
}

.step-number {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1rem;
  font-weight: 300;
}

.step-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.step-text {
  color: #a8a8a8;
  line-height: 1.7;
}

/* Form Styling */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
}

.form-intro {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 3rem;
}

.form-placeholder {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 3rem;
  text-align: center;
}

.placeholder-text {
  color: #c9a96e;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.placeholder-note {
  color: #a8a8a8;
  margin-bottom: 2rem;
}

.form-example {
  text-align: left;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.input-placeholder {
  height: 45px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.textarea-placeholder {
  height: 120px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.guidelines-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.guidelines-list li {
  color: #b8b8b8;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}

.guidelines-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-size: 1.5rem;
}

/* ===================================
   Blog Page
   =================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.blog-card:hover {
  border-color: #c9a96e;
}

.blog-date {
  color: #8b2635;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.blog-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-excerpt {
  color: #a8a8a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-link:hover {
  color: #b8864e;
}

.newsletter-section {
  background-color: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.newsletter-text {
  color: #a8a8a8;
  margin-bottom: 2rem;
}

.newsletter-placeholder {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 2rem;
}

/* ===================================
   Journal Entry Page
   =================================== */

.journal-article {
  background-color: #0a0a0a;
}

.article-header {
  background-color: #0f0f0f;
  padding: 3rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #b8864e;
}

.article-date {
  color: #8b2635;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-title {
  font-size: 2.5rem;
  color: #d4d4d4;
  margin: 0;
  line-height: 1.3;
}

.article-content {
  padding: 4rem 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8b8b8;
  margin-bottom: 1.5rem;
}

.article-body h3 {
  color: #c9a96e;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.article-actions {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid #1a1a1a;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #d4d4d4;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}

.action-btn.liked {
  border-color: #8b2635;
  color: #8b2635;
}

.action-btn.pulse {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.action-icon {
  font-size: 1.25rem;
}

.share-menu {
  max-width: 800px;
  margin: 1rem auto 0;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-option {
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: none;
  color: #d4d4d4;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.share-option:hover {
  background-color: #1a1a1a;
  color: #c9a96e;
}

/* Guestbook Section */
.guestbook-section {
  background-color: #0f0f0f;
  padding: 4rem 0;
  border-top: 1px solid #1a1a1a;
}

.guestbook-title {
  font-size: 2rem;
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
}

.guestbook-subtitle {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 3rem;
}

.comment-form {
  max-width: 700px;
  margin: 0 auto 4rem;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c9a96e;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.char-count {
  display: block;
  text-align: right;
  color: #808080;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.comments-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-card {
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.comment-card:hover {
  border-color: #2a2a2a;
}

.comment-card.new-comment {
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comment-author {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comment-date {
  color: #808080;
  font-size: 0.85rem;
}

.comment-text {
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

/* Related Articles Section */
.related-section {
  background-color: #0a0a0a;
  padding: 4rem 0;
  border-top: 1px solid #1a1a1a;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.related-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  display: block;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #c9a96e;
  color: #0a0a0a;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Links Page
   =================================== */

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.link-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.link-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

.link-icon {
  width: 60px;
  height: 60px;
  background-color: #1a1a1a;
  border: 1px solid #c9a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #c9a96e;
  font-weight: bold;
  font-size: 1rem;
}

.link-title {
  color: #d4d4d4;
  margin-bottom: 0.75rem;
}

.link-description {
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.resource-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
}

.resource-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.resource-text {
  color: #a8a8a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resource-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inline-link {
  color: #c9a96e;
  text-decoration: underline;
}

.inline-link:hover {
  color: #b8864e;
}

/* ===================================
   Events Page
   =================================== */

.past-events-section {
  background-color: #0a0a0a;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

.event-card.event-past {
  opacity: 0.7;
}

.event-card.event-past:hover {
  opacity: 0.85;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.event-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  font-weight: 500;
}

.event-badge-hosting {
  color: #c9a96e;
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.event-badge-attending {
  color: #ff6b6b;
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.15);
}

.event-date {
  color: #a8a8a8;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.event-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.event-time,
.event-location {
  color: #a8a8a8;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.event-icon {
  font-size: 1rem;
  color: #c9a96e;
}

.event-description {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
  align-self: flex-start;
}

.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #a8a8a8;
}

.events-empty p {
  margin: 0;
  font-size: 1.1rem;
}

/* ===================================
   Age Gate Page
   =================================== */

.age-gate-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a0f 0%, #0a0a0a 100%);
}

.age-gate-container {
  max-width: 700px;
  width: 100%;
  padding: 2rem;
}

.age-gate-content {
  background-color: #0f0f0f;
  border: 1px solid #c9a96e;
  padding: 3rem;
  text-align: center;
}

.age-gate-logo {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: #c9a96e;
  margin-bottom: 2rem;
}

.age-gate-warning {
  text-align: left;
  margin-bottom: 2rem;
}

.age-gate-title {
  color: #8b2635;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.age-gate-text {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.age-gate-list {
  list-style-position: inside;
  color: #a8a8a8;
  line-height: 1.8;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.age-gate-list li {
  margin-bottom: 0.5rem;
}

/* Added date of birth form styles */
.age-gate-form {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.form-label {
  color: #d4d4d4;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.dob-inputs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dob-select {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.dob-select:focus {
  outline: none;
  border-color: #c9a96e;
}

.dob-select option {
  background-color: #1a1a1a;
  color: #d4d4d4;
}

.age-error {
  color: #8b2635;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}

.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-actions .btn {
  flex: 1;
  min-width: 200px;
}

.age-gate-footer {
  color: #808080;
  font-size: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Responsive adjustments for age gate form */
@media (max-width: 768px) {
  .age-gate-content {
    padding: 2rem;
  }

  .dob-inputs {
    flex-direction: column;
  }

  .dob-select {
    min-width: 100%;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .age-gate-actions .btn {
    width: 100%;
  }
}

/* Logo Bar */
.logo-bar-section {
  overflow: hidden;
}

.logo-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.logo-track {
  display: flex;
  animation: scroll 90s linear infinite;
}

.logo-track a {
  flex-shrink: 0;
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.logo-track img {
  width: 250px;
  height: 125px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Logo Bar */
@media (max-width: 768px) {
  .logo-track {
    animation: scroll 20s linear infinite;
  }
  .logo-track img {
    width: 250px;
    height: 125px;
  }
}

.site-footer {
  position: relative;
}

.footer-logo {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  height: 4rem;
  width: auto;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policies {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policies a {
  color: #a8a8a8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #c9a96e;
}

/* Mobile footer logo */
@media (max-width: 768px) {
  .footer-logo {
    position: static;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-policies {
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

/* Mobile adjustments for alignment */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 1.5rem;
  }
  .services-grid {
    margin-top: 2rem;
  }
  /* Normalize text alignment */
  .section-title,
  .section-text,
  .card-title,
  .card-text {
    text-align: center;
  }
  /* Remove max-width for full centering */
  .section-text {
    max-width: none;
  }
  /* Adjust card padding for mobile */
  .content-card {
    padding: 1.5rem;
  }
  /* Ensure grids collapse to single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Center footer content */
  .footer-content {
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  /* Hero section mobile adjustments */
  .hero {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  /* CTA mobile adjustments */
  .btn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
  }
  .cta-title,
  .cta-text {
    text-align: center;
  }
}
/* ===================================
   Cookie Consent Banner
   =================================== */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  border-top: 1px solid #1a1a1a;
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(4px);
}

#cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-consent-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #a8a8a8;
}

.cookie-consent-text p {
  margin: 0;
  display: inline;
}

.cookie-consent-link {
  color: #c9a96e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-consent-link:hover {
  color: #b8864e;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

#cookie-consent-accept {
  background-color: #c9a96e;
  color: #0a0a0a;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

#cookie-consent-accept:hover {
  background-color: #b8864e;
  transform: translateY(-2px);
}

#cookie-consent-accept:active {
  transform: translateY(0);
}

#cookie-consent-accept:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 1rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-consent-text {
    font-size: 0.9rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }

  #cookie-consent-accept {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #cookie-consent-banner {
    padding: 0.75rem 1rem;
    bottom: 0;
  }

  .cookie-consent-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  #cookie-consent-accept {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ===================================
   About Page
   =================================== */

.about-hero {
  padding: 3rem 0;
}

.about-hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-hero-image {
  width: 350px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.about-hero-text {
  flex: 1;
}

.about-hero-text .section-title {
  text-align: left;
  font-size: 2.2rem;
}

/* About Approach Section */
.about-approach {
  padding: 3rem 0;
}

.about-grid-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-grid-left {
  grid-template-columns: 1fr 1fr;
}

.about-grid-right {
  grid-template-columns: 1fr 1fr;
}

.about-grid-right .about-grid-image {
  order: -1;
}

.about-grid-text {
  padding: 1rem 0;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-grid-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* About Presence Section */
.about-presence {
  padding: 3rem 0;
}

.section-text-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.presence-card {
  background-color: rgba(201, 169, 110, 0.05);
  padding: 2rem;
  border-left: 2px solid #c9a96e;
  transition: all 0.3s ease;
}

.presence-card:hover {
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateX(8px);
}

.card-link {
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #c9a96e;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #d4d4d4;
  border-bottom-color: #d4d4d4;
}

.card-link:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* About Philosophy Section */
/* Professional Journey Timeline */
.about-journey {
  padding: 3rem 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #c9a96e;
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 2rem);
  margin-right: 0;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #c9a96e;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.timeline-year {
  font-size: 1.5rem;
  color: #c9a96e;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-milestone {
  font-size: 1.1rem;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Stats Section */
.about-stats {
  padding: 3rem 0;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.stats-photo {
  position: relative;
}

.stats-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.stats-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  padding: 1.25rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #c9a96e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  color: #d4d4d4;
  font-weight: 500;
}

/* Qualifications Section */
.about-qualifications {
  padding: 3rem 0;
}

.qualifications-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.qualifications-photo {
  position: relative;
}

.qualifications-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.qualifications-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.badge {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  text-align: center;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.badge-title {
  font-size: 1rem;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.badge-text {
  font-size: 0.85rem;
  color: #b8b8b8;
  line-height: 1.5;
}

/* About Testimonial Section */
.about-testimonial {
  padding: 4rem 0;
  background-color: rgba(201, 169, 110, 0.05);
}

.about-testimonial-quote {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #d4d4d4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
  padding: 2rem 0;
}

.about-testimonial-quote p {
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.cta-text {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===================================
   Testimonials Page
   =================================== */

.testimonials-section {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: cascadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:nth-child(5) { animation-delay: 0.4s; }
.testimonial-card:nth-child(6) { animation-delay: 0.5s; }
.testimonial-card:nth-child(7) { animation-delay: 0.6s; }
.testimonial-card:nth-child(8) { animation-delay: 0.7s; }
.testimonial-card:nth-child(9) { animation-delay: 0.8s; }

@keyframes cascadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  background-color: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1.3rem;
}

.star {
  color: #c9a96e;
}

.star.filled {
  opacity: 1;
}

.star.empty {
  opacity: 0.3;
}

/* Review Banner */
.review-banner-section {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.review-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.review-banner-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4af37;
  margin: 0;
}

.review-banner-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #c9c9c9;
  margin: 0;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d4d4d4;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}

/* Responsive Testimonials Page */
@media (max-width: 1024px) {
  .about-hero-content {
    gap: 2rem;
  }

  .about-hero-image {
    width: 280px;
  }

  .about-grid-item {
    gap: 2rem;
  }

  .about-grid-image {
    height: 350px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 2rem 0;
  }

  .about-hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-hero-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .about-hero-text .section-title {
    text-align: center;
    font-size: 1.8rem;
  }

  .about-grid-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .about-grid-right .about-grid-image {
    order: 0;
  }

  .about-grid-text {
    padding: 0;
  }

  .about-grid-image {
    height: 300px;
    width: 100%;
  }

  .about-presence-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Timeline responsive */
  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
    text-align: left;
  }

  /* Stats responsive */
  .stats-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-details {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Qualifications responsive */
  .qualifications-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .qualifications-badges {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-testimonial-quote {
    font-size: 1.3rem;
    padding: 1.5rem 0;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-image {
    max-width: 100%;
  }

  .about-hero-text .section-title {
    font-size: 1.5rem;
  }

  .about-section .section-title {
    font-size: 1.3rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .presence-card,
  .badge,
  .stat-item {
    padding: 1.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .timeline-year {
    font-size: 1.3rem;
  }

  .timeline-milestone {
    font-size: 1rem;
  }

  .badge-icon {
    font-size: 1.75rem;
  }

  .badge-title {
    font-size: 0.95rem;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .about-testimonial-quote {
    font-size: 1.1rem;
    padding: 1rem 0;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .section-text-centered {
    font-size: 0.95rem;
  }
}

/* ===================================
   Link in Bio / Linktree Page
   =================================== */

.linktree-section {
  padding: 2rem 0;
}

.linktree-container {
  max-width: 700px;
  margin: 0 auto;
}

.linktree-profile {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.linktree-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  object-fit: cover;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.linktree-name {
  font-size: 2rem;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.linktree-bio {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid-based Links Layout */
.linktree-links-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Primary CTA Card */
.linktree-card-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #ff6b6b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.linktree-card-primary:hover {
  background: linear-gradient(135deg, #323232 0%, #222 100%);
  border-color: #ff8585;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.15);
}

.linktree-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
}

.linktree-card-text {
  flex: 1;
  color: #d4d4d4;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.linktree-card-arrow {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 300;
}

/* Category Section */
.linktree-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linktree-category-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8b8b8;
  border-bottom: 1px solid rgba(255, 107, 107, 0.2);
  padding-bottom: 0.75rem;
  margin: 0;
}

/* Card Group for multiple links */
.linktree-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Small Card Style */
.linktree-card-small {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: rgba(212, 212, 212, 0.05);
  border: 1px solid #3a3a3a;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-height: 60px;
}

.linktree-card-small:hover {
  background-color: rgba(212, 212, 212, 0.1);
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

.linktree-card-small .linktree-card-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}

/* Glitter Animation for Annex Button */
.glitter-wrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
}

.annex-button {
  position: relative;
  z-index: 2;
  width: 100%;
}

.glitter-particles {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
  animation: softGlow 2s ease-in-out infinite;
}

@keyframes softGlow {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(212, 175, 55, 0.4),
      0 0 25px rgba(212, 175, 55, 0.2),
      inset 0 0 20px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(212, 175, 55, 0.6),
      0 0 35px rgba(255, 215, 0, 0.3),
      inset 0 0 20px rgba(212, 175, 55, 0.2);
  }
}

/* Pixie Dust Mouse Trail */
.pixie-dust {
  position: fixed;
  pointer-events: none;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.9), rgba(212, 175, 55, 0.7));
  box-shadow: 0 0 3px rgba(212, 175, 55, 0.9);
  animation: pixieFall 2s ease-in forwards;
  z-index: 1000;
}

@keyframes pixieFall {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(80px) translateX(0);
  }
}

/* Page Transitions */
body {
  transition: opacity 1s ease-in-out;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.animate-in {
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth staggered animations without harsh delays */
.scroll-animate:nth-child(1).animate-in {
  animation-delay: 0s;
}

.scroll-animate:nth-child(2).animate-in {
  animation-delay: 0.05s;
}

.scroll-animate:nth-child(3).animate-in {
  animation-delay: 0.1s;
}

.scroll-animate:nth-child(4).animate-in {
  animation-delay: 0.15s;
}

.scroll-animate:nth-child(5).animate-in {
  animation-delay: 0.2s;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body,
  .scroll-animate,
  .scroll-animate.animate-in {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive Linktree */
@media (max-width: 768px) {
  .linktree-container {
    max-width: 100%;
  }

  .linktree-avatar {
    width: 130px;
    height: 130px;
  }

  .linktree-name {
    font-size: 1.75rem;
  }

  .linktree-bio {
    font-size: 0.95rem;
  }

  .linktree-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .linktree-container {
    padding: 0 1rem;
  }

  .linktree-profile {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .linktree-avatar {
    width: 110px;
    height: 110px;
  }

  .linktree-name {
    font-size: 1.5rem;
  }

  .linktree-bio {
    font-size: 0.9rem;
  }

  .linktree-links-grid {
    gap: 2rem;
  }

  .linktree-card-primary {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .linktree-card-text {
    font-size: 1.1rem;
  }

  .linktree-card-group {
    grid-template-columns: 1fr;
  }

  .linktree-card-small {
    padding: 1rem;
    min-height: 50px;
  }

  .linktree-card-small .linktree-card-text {
    font-size: 0.9rem;
  }
}
/* ===================================
   Booking Form Styles
   =================================== */

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  font-size: 2rem;
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.form-intro {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.required {
  color: #8b2635;
}

.form-control {
  width: 100%;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-control:disabled {
  background-color: #0f0f0f;
  color: #808080;
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  padding: 0.875rem;
}

.form-hint {
  display: block;
  color: #808080;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.error-message {
  display: block;
  color: #8b2635;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.inline-message {
  padding: 0.75rem;
  background-color: rgba(139, 38, 53, 0.1);
  border-left: 3px solid #8b2635;
  color: #c9a3a3;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.info-message {
  padding: 1rem;
  background-color: rgba(201, 169, 110, 0.1);
  border-left: 3px solid #c9a96e;
  color: #d4d4d4;
  border-radius: 2px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  margin-top: 0.75rem;
}

.radio-item,
.checkbox-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #c9a96e;
  margin: 0;
}

.radio-label,
.checkbox-label {
  cursor: pointer;
  color: #d4d4d4;
  font-size: 0.95rem;
  user-select: none;
  line-height: 1.4;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* Fieldset */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

/* Form Divider */
.form-divider {
  border: none;
  height: 1px;
  background-color: #1a1a1a;
  margin: 2.5rem 0;
}

.form-optional-label {
  display: block;
  color: #c9a96e;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Visually Hidden Class for Honeypot */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-actions .btn {
  min-width: 250px;
}

.btn:disabled {
  background-color: #0f0f0f;
  color: #808080;
  border-color: #2a2a2a;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Privacy Note */
.form-privacy-note {
  text-align: center;
  color: #808080;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.5;
}

/* Responsive Form */
@media (max-width: 768px) {
  .form-container {
    max-width: 100%;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-control {
    padding: 0.75rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  textarea.form-control {
    min-height: 100px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .radio-item,
  .checkbox-item {
    margin-bottom: 0.875rem;
  }

  .form-divider {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .form-intro {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-control {
    font-size: 16px;
  }

  .form-hint {
    font-size: 0.8rem;
  }

  .error-message {
    font-size: 0.8rem;
  }

  input[type="radio"],
  input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .radio-label,
  .checkbox-label {
    font-size: 0.9rem;
  }

  .form-privacy-note {
    font-size: 0.8rem;
  }
}

/* ===================================
   Footer Social Media Bar
   =================================== */

.footer-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #d4d4d4;
  background-color: rgba(212, 212, 212, 0.05);
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #fff;
  background-color: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Footer Social */
@media (max-width: 768px) {
  .footer-social {
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .footer-social {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* ===================================
   Search Styles
   =================================== */

.search-btn {
  background: none;
  border: none;
  color: #d4d4d4;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: #b8b8b8;
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 2rem 0;
  overflow-y: auto;
}

.search-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.search-modal-content {
  width: 100%;
  max-width: 700px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  margin: 2rem auto;
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.search-input {
  flex: 1;
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2);
}

.search-close-btn {
  background: none;
  border: none;
  color: #b8b8b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}

.search-close-btn:hover {
  color: #d4d4d4;
}

.search-results {
  max-height: 500px;
  overflow-y: auto;
  padding: 1rem;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-item {
  display: block;
  padding: 1rem;
  background-color: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: #d4d4d4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background-color: #151515;
  border-color: #ff6b6b;
  transform: translateX(4px);
}

.search-result-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #d4d4d4;
}

.search-result-url {
  font-size: 0.85rem;
  color: #888;
}

.search-message {
  padding: 2rem 1rem;
  text-align: center;
  color: #888;
  font-size: 0.95rem;
}

/* Responsive Search */
@media (max-width: 768px) {
  .search-modal {
    padding: 1rem;
  }

  .search-modal-content {
    margin: 0;
    border-radius: 4px;
  }

  .search-modal-header {
    padding: 1rem;
  }

  .search-input {
    font-size: 16px;
  }

  .search-results {
    max-height: 400px;
  }

  .search-result-item {
    padding: 0.75rem;
  }

  .search-result-title {
    font-size: 0.95rem;
  }

  .search-result-url {
    font-size: 0.75rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ===================================
   The Annex Banner Styles
   =================================== */

.annex-banner-section {
  background-color: #1a1a1a;
  padding: 3rem 0;
}

.annex-banner-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.annex-banner-link:hover {
  transform: translateY(-2px);
}

.annex-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.15) 0%, rgba(139, 0, 20, 0.15) 100%);
  border: 1px solid rgba(180, 20, 40, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.annex-banner-link:hover .annex-banner-content {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.25) 0%, rgba(139, 0, 20, 0.25) 100%);
  border-color: rgba(180, 20, 40, 0.5);
}

.annex-banner-logo {
  height: 300px;
  width: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.annex-banner-text {
  text-align: center;
}

.annex-banner-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.annex-banner-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
  font-style: italic;
  margin: 0 0 1.5rem 0;
}

.annex-join-btn {
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.annex-join-btn:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
}

/* Responsive Annex Banner */
@media (max-width: 768px) {
  .annex-banner-section {
    padding: 2rem 0;
  }

  .annex-banner-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .annex-banner-logo {
    height: 60px;
  }

  .annex-banner-title {
    font-size: 1.25rem;
  }

  .annex-banner-tagline {
    font-size: 0.85rem;
  }
}

/* ===================================
   Booking CTA Banner Styles
   =================================== */

.booking-cta-banner {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.15) 0%, rgba(139, 0, 20, 0.15) 100%);
  border: 1px solid rgba(180, 20, 40, 0.3);
  padding: 3rem 0;
  margin: 2rem 0;
}

.booking-cta-content {
  text-align: center;
  padding: 2rem;
}

.booking-cta-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-cta-text {
  font-size: 1rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Booking CTA Banner */
@media (max-width: 768px) {
  .booking-cta-banner {
    padding: 2rem 0;
    margin: 1rem 0;
  }

  .booking-cta-content {
    padding: 1.5rem;
  }

  .booking-cta-title {
    font-size: 1.5rem;
  }

  .booking-cta-text {
    font-size: 0.9rem;
  }
}

/* ===================================
   Back to Top Button
   =================================== */

#backToTopBtn {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

#backToTopBtn:hover {
  background-color: #e5c158;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

#backToTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:active {
  transform: translateY(-1px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  #backToTopBtn {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
/* ===================================
   CSS Reset and Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: #d4d4d4;
  background-color: #0a0a0a;
  min-height: 100vh;
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8864e;
}

ul {
  list-style-position: inside;
}

/* ===================================
   Layout Components
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

/* ===================================
   Header and Navigation
   =================================== */

.site-header {
  background-color: #0f0f0f;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 3rem;
  width: auto;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: #d4d4d4;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-list a {
  color: #d4d4d4;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #c9a96e;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    flex-direction: column;
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 1.5rem;
    gap: 1.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  /* Added background image support with overlay */
  background: linear-gradient(135deg, rgba(26, 10, 15, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%),
    url("/placeholder.svg?height=800&width=1920") center / cover no-repeat;
  padding: 8rem 0;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  /* Added z-index to ensure content appears above background */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a8a8a8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===================================
   Page Headers
   =================================== */

.page-header {
  background-color: #0f0f0f;
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}

.page-title {
  font-size: 2.5rem;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #a8a8a8;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #c9a96e;
  color: #0a0a0a;
  border-color: #c9a96e;
}

.btn-primary:hover {
  background-color: #b8864e;
  border-color: #b8864e;
  color: #0a0a0a;
}

.btn-secondary {
  background-color: #8b2635;
  color: #d4d4d4;
  border-color: #8b2635;
}

.btn-secondary:hover {
  background-color: #6b1d28;
  border-color: #6b1d28;
  color: #d4d4d4;
}

.btn-outline {
  background-color: transparent;
  color: #c9a96e;
  border-color: #c9a96e;
}

.btn-outline:hover {
  background-color: #c9a96e;
  color: #0a0a0a;
}

/* ===================================
   Content Sections
   =================================== */

.section-title {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 2rem;
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.intro-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.intro-image {
  width: 300px;
  height: auto;
  flex-shrink: 0;
}

.intro-text {
  flex: 1;
}

.intro-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.intro-text .section-text {
  margin: 0 0 1.5rem 0;
  max-width: none;
}

/* Responsive Intro */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }
  .intro-image {
    width: 200px;
  }
  .intro-text .section-title {
    text-align: center;
  }
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid Layouts */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-grid .content-card:nth-child(-n+3) {
  grid-column: span 2;
}

.services-grid .content-card:nth-child(n+4) {
  grid-column: span 3;
}

/* Responsive Grid for Services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .content-card {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.content-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.content-card:hover {
  border-color: #c9a96e;
}

.card-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.philosophy-section .section-title,
.philosophy-section .card-title,
.philosophy-section .card-text {
  text-align: center;
}

.info-section .section-title,
.info-section .card-title,
.info-section .card-text {
  text-align: center;
}

.card-text {
  color: #a8a8a8;
  line-height: 1.7;
}

.embeddable-buttondown-form {
  max-width: 400px;
  margin: 2rem auto 0;
}

.embeddable-buttondown-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #c9a96e;
  font-weight: 500;
}

.embeddable-buttondown-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #d4d4d4;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.embeddable-buttondown-form input[type="email"]:focus {
  outline: none;
  border-color: #c9a96e;
}

.embeddable-buttondown-form input[type="submit"] {
  background-color: #c9a96e;
  color: #0a0a0a;
  border: none;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.embeddable-buttondown-form input[type="submit"]:hover {
  background-color: #b8864e;
}

.subscribe-section .section-text {
  text-align: center;
}

.testimonial {
  font-style: italic;
  font-size: 1.75rem;
  text-align: center;
  color: #c9a96e;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
}

/* ===================================
   Services Page
   =================================== */

/* Session Styles Section */
.session-styles-section {
  padding: 3rem 0;
}

.session-styles-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.session-styles-photo {
  position: relative;
  order: 1;
}

.session-styles-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.session-styles-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2;
}

.session-style-category {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border-left: 3px solid #c9a96e;
}

.session-category-title {
  font-size: 1.1rem;
  color: #c9a96e;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.session-category-text {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.boundaries-section {
  padding: 2rem;
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid #1a1a1a;
  margin-top: 1rem;
}

.boundaries-section .section-title {
  margin-bottom: 1rem;
}

.boundaries-list {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}

.boundaries-list li {
  color: #b8b8b8;
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
  font-size: 0.95rem;
}

.boundaries-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-weight: bold;
}

.service-block {
  display: flex;
  gap: 3rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.service-content {
  flex: 1;
  min-width: 300px;
}

.service-title {
  color: #c9a96e;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-description {
  color: #b8b8b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  color: #a8a8a8;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a96e;
}

.service-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  text-align: center;
}

.price {
  font-size: 2.5rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Responsive Services */
@media (max-width: 768px) {
  .session-styles-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .session-styles-photo {
    order: 2;
  }

  .session-styles-text {
    order: 1;
  }

  .service-block {
    flex-direction: column;
    padding: 2rem;
  }

  .service-pricing {
    min-width: 100%;
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .price {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .session-styles-content {
    grid-template-columns: 1fr;
  }

  .session-styles-text {
    gap: 1rem;
  }

  .session-style-category {
    padding: 1rem;
  }

  .session-category-title {
    font-size: 1rem;
  }

  .session-category-text {
    font-size: 0.9rem;
  }

  .service-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.75rem;
  }
}

/* ===================================
   Bookings Page
   =================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  text-align: center;
}

.step-number {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1rem;
  font-weight: 300;
}

.step-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.step-text {
  color: #a8a8a8;
  line-height: 1.7;
}

/* Form Styling */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
}

.form-intro {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 3rem;
}

.form-placeholder {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 3rem;
  text-align: center;
}

.placeholder-text {
  color: #c9a96e;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.placeholder-note {
  color: #a8a8a8;
  margin-bottom: 2rem;
}

.form-example {
  text-align: left;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.input-placeholder {
  height: 45px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.textarea-placeholder {
  height: 120px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.guidelines-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.guidelines-list li {
  color: #b8b8b8;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}

.guidelines-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-size: 1.5rem;
}

/* ===================================
   Blog Page
   =================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.blog-card:hover {
  border-color: #c9a96e;
}

.blog-date {
  color: #8b2635;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.blog-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-excerpt {
  color: #a8a8a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-link:hover {
  color: #b8864e;
}

.newsletter-section {
  background-color: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.newsletter-text {
  color: #a8a8a8;
  margin-bottom: 2rem;
}

.newsletter-placeholder {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 2rem;
}

/* ===================================
   Journal Entry Page
   =================================== */

.journal-article {
  background-color: #0a0a0a;
}

.article-header {
  background-color: #0f0f0f;
  padding: 3rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #b8864e;
}

.article-date {
  color: #8b2635;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-title {
  font-size: 2.5rem;
  color: #d4d4d4;
  margin: 0;
  line-height: 1.3;
}

.article-content {
  padding: 4rem 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b8b8b8;
  margin-bottom: 1.5rem;
}

.article-body h3 {
  color: #c9a96e;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.article-actions {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid #1a1a1a;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #d4d4d4;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}

.action-btn.liked {
  border-color: #8b2635;
  color: #8b2635;
}

.action-btn.pulse {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.action-icon {
  font-size: 1.25rem;
}

.share-menu {
  max-width: 800px;
  margin: 1rem auto 0;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-option {
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: none;
  color: #d4d4d4;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.share-option:hover {
  background-color: #1a1a1a;
  color: #c9a96e;
}

/* Guestbook Section */
.guestbook-section {
  background-color: #0f0f0f;
  padding: 4rem 0;
  border-top: 1px solid #1a1a1a;
}

.guestbook-title {
  font-size: 2rem;
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
}

.guestbook-subtitle {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 3rem;
}

.comment-form {
  max-width: 700px;
  margin: 0 auto 4rem;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c9a96e;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.char-count {
  display: block;
  text-align: right;
  color: #808080;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.comments-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-card {
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.comment-card:hover {
  border-color: #2a2a2a;
}

.comment-card.new-comment {
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comment-author {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comment-date {
  color: #808080;
  font-size: 0.85rem;
}

.comment-text {
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

/* Related Articles Section */
.related-section {
  background-color: #0a0a0a;
  padding: 4rem 0;
  border-top: 1px solid #1a1a1a;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.related-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2rem;
  display: block;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

/* Notification */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #c9a96e;
  color: #0a0a0a;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Links Page
   =================================== */

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.link-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.link-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

.link-icon {
  width: 60px;
  height: 60px;
  background-color: #1a1a1a;
  border: 1px solid #c9a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #c9a96e;
  font-weight: bold;
  font-size: 1rem;
}

.link-title {
  color: #d4d4d4;
  margin-bottom: 0.75rem;
}

.link-description {
  color: #a8a8a8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.resource-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
}

.resource-title {
  color: #c9a96e;
  margin-bottom: 1rem;
}

.resource-text {
  color: #a8a8a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resource-link {
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inline-link {
  color: #c9a96e;
  text-decoration: underline;
}

.inline-link:hover {
  color: #b8864e;
}

/* ===================================
   Events Page
   =================================== */

.past-events-section {
  background-color: #0a0a0a;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card:hover {
  border-color: #c9a96e;
  transform: translateY(-3px);
}

.event-card.event-past {
  opacity: 0.7;
}

.event-card.event-past:hover {
  opacity: 0.85;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.event-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  font-weight: 500;
}

.event-badge-hosting {
  color: #c9a96e;
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.event-badge-attending {
  color: #ff6b6b;
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.15);
}

.event-date {
  color: #a8a8a8;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.event-title {
  color: #d4d4d4;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.event-time,
.event-location {
  color: #a8a8a8;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.event-icon {
  font-size: 1rem;
  color: #c9a96e;
}

.event-description {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
  align-self: flex-start;
}

.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background-color: #0f0f0f;
  border: 1px solid #1a1a1a;
  color: #a8a8a8;
}

.events-empty p {
  margin: 0;
  font-size: 1.1rem;
}

/* ===================================
   Age Gate Page
   =================================== */

.age-gate-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0a0f 0%, #0a0a0a 100%);
}

.age-gate-container {
  max-width: 700px;
  width: 100%;
  padding: 2rem;
}

.age-gate-content {
  background-color: #0f0f0f;
  border: 1px solid #c9a96e;
  padding: 3rem;
  text-align: center;
}

.age-gate-logo {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: #c9a96e;
  margin-bottom: 2rem;
}

.age-gate-warning {
  text-align: left;
  margin-bottom: 2rem;
}

.age-gate-title {
  color: #8b2635;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.age-gate-text {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.age-gate-list {
  list-style-position: inside;
  color: #a8a8a8;
  line-height: 1.8;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.age-gate-list li {
  margin-bottom: 0.5rem;
}

/* Added date of birth form styles */
.age-gate-form {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.form-label {
  color: #d4d4d4;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.dob-inputs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dob-select {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.dob-select:focus {
  outline: none;
  border-color: #c9a96e;
}

.dob-select option {
  background-color: #1a1a1a;
  color: #d4d4d4;
}

.age-error {
  color: #8b2635;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}

.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-actions .btn {
  flex: 1;
  min-width: 200px;
}

.age-gate-footer {
  color: #808080;
  font-size: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Responsive adjustments for age gate form */
@media (max-width: 768px) {
  .age-gate-content {
    padding: 2rem;
  }

  .dob-inputs {
    flex-direction: column;
  }

  .dob-select {
    min-width: 100%;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .age-gate-actions .btn {
    width: 100%;
  }
}

/* Logo Bar */
.logo-bar-section {
  overflow: hidden;
}

.logo-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.logo-track {
  display: flex;
  animation: scroll 90s linear infinite;
}

.logo-track a {
  flex-shrink: 0;
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.logo-track img {
  width: 250px;
  height: 125px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Logo Bar */
@media (max-width: 768px) {
  .logo-track {
    animation: scroll 10s linear infinite;
  }
  .logo-track img {
    width: 250px;
    height: 125px;
  }
}

.site-footer {
  position: relative;
}

.footer-logo {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  height: 4rem;
  width: auto;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policies {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policies a {
  color: #a8a8a8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #c9a96e;
}

/* Mobile footer logo */
@media (max-width: 768px) {
  .footer-logo {
    position: static;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-policies {
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

/* Mobile adjustments for alignment */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 1.5rem;
  }
  .services-grid {
    margin-top: 2rem;
  }
  /* Normalize text alignment */
  .section-title,
  .section-text,
  .card-title,
  .card-text {
    text-align: center;
  }
  /* Remove max-width for full centering */
  .section-text {
    max-width: none;
  }
  /* Adjust card padding for mobile */
  .content-card {
    padding: 1.5rem;
  }
  /* Ensure grids collapse to single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Center footer content */
  .footer-content {
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  /* Hero section mobile adjustments */
  .hero {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  /* CTA mobile adjustments */
  .btn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
  }
  .cta-title,
  .cta-text {
    text-align: center;
  }
}
/* ===================================
   Cookie Consent Banner
   =================================== */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  border-top: 1px solid #1a1a1a;
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(4px);
}

#cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-consent-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #a8a8a8;
}

.cookie-consent-text p {
  margin: 0;
  display: inline;
}

.cookie-consent-link {
  color: #c9a96e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-consent-link:hover {
  color: #b8864e;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

#cookie-consent-accept {
  background-color: #c9a96e;
  color: #0a0a0a;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

#cookie-consent-accept:hover {
  background-color: #b8864e;
  transform: translateY(-2px);
}

#cookie-consent-accept:active {
  transform: translateY(0);
}

#cookie-consent-accept:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 1rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-consent-text {
    font-size: 0.9rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }

  #cookie-consent-accept {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #cookie-consent-banner {
    padding: 0.75rem 1rem;
    bottom: 0;
  }

  .cookie-consent-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  #cookie-consent-accept {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ===================================
   About Page
   =================================== */

.about-hero {
  padding: 3rem 0;
}

.about-hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-hero-image {
  width: 350px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.about-hero-text {
  flex: 1;
}

.about-hero-text .section-title {
  text-align: left;
  font-size: 2.2rem;
}

/* About Approach Section */
.about-approach {
  padding: 3rem 0;
}

.about-grid-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-grid-left {
  grid-template-columns: 1fr 1fr;
}

.about-grid-right {
  grid-template-columns: 1fr 1fr;
}

.about-grid-right .about-grid-image {
  order: -1;
}

.about-grid-text {
  padding: 1rem 0;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-grid-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* About Presence Section */
.about-presence {
  padding: 3rem 0;
}

.section-text-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.presence-card {
  background-color: rgba(201, 169, 110, 0.05);
  padding: 2rem;
  border-left: 2px solid #c9a96e;
  transition: all 0.3s ease;
}

.presence-card:hover {
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateX(8px);
}

.card-link {
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #c9a96e;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #d4d4d4;
  border-bottom-color: #d4d4d4;
}

.card-link:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* About Philosophy Section */
/* Professional Journey Timeline */
.about-journey {
  padding: 3rem 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #c9a96e;
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 2rem);
  margin-right: 0;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #c9a96e;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.timeline-year {
  font-size: 1.5rem;
  color: #c9a96e;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-milestone {
  font-size: 1.1rem;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Stats Section */
.about-stats {
  padding: 3rem 0;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.stats-photo {
  position: relative;
}

.stats-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.stats-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  padding: 1.25rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #c9a96e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  color: #d4d4d4;
  font-weight: 500;
}

/* Qualifications Section */
.about-qualifications {
  padding: 3rem 0;
}

.qualifications-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.qualifications-photo {
  position: relative;
}

.qualifications-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #c9a96e;
  border-radius: 2px;
}

.qualifications-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.badge {
  padding: 1.5rem;
  background-color: rgba(201, 169, 110, 0.05);
  border: 1px solid #1a1a1a;
  text-align: center;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: #c9a96e;
  background-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.badge-title {
  font-size: 1rem;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.badge-text {
  font-size: 0.85rem;
  color: #b8b8b8;
  line-height: 1.5;
}

/* About Testimonial Section */
.about-testimonial {
  padding: 4rem 0;
  background-color: rgba(201, 169, 110, 0.05);
}

.about-testimonial-quote {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #d4d4d4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
  padding: 2rem 0;
}

.about-testimonial-quote p {
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  color: #c9a96e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.cta-text {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===================================
   Testimonials Page
   =================================== */

.testimonials-section {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background-color: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: cascadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:nth-child(5) { animation-delay: 0.4s; }
.testimonial-card:nth-child(6) { animation-delay: 0.5s; }
.testimonial-card:nth-child(7) { animation-delay: 0.6s; }
.testimonial-card:nth-child(8) { animation-delay: 0.7s; }
.testimonial-card:nth-child(9) { animation-delay: 0.8s; }

@keyframes cascadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  background-color: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1.3rem;
}

.star {
  color: #c9a96e;
}

.star.filled {
  opacity: 1;
}

.star.empty {
  opacity: 0.3;
}

/* Review Banner */
.review-banner-section {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.review-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.review-banner-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4af37;
  margin: 0;
}

.review-banner-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #c9c9c9;
  margin: 0;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d4d4d4;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}

/* Responsive Testimonials Page */
@media (max-width: 1024px) {
  .about-hero-content {
    gap: 2rem;
  }

  .about-hero-image {
    width: 280px;
  }

  .about-grid-item {
    gap: 2rem;
  }

  .about-grid-image {
    height: 350px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 2rem 0;
  }

  .about-hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-hero-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .about-hero-text .section-title {
    text-align: center;
    font-size: 1.8rem;
  }

  .about-grid-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .about-grid-right .about-grid-image {
    order: 0;
  }

  .about-grid-text {
    padding: 0;
  }

  .about-grid-image {
    height: 300px;
    width: 100%;
  }

  .about-presence-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Timeline responsive */
  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
    text-align: left;
  }

  /* Stats responsive */
  .stats-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-details {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Qualifications responsive */
  .qualifications-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .qualifications-badges {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-testimonial-quote {
    font-size: 1.3rem;
    padding: 1.5rem 0;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-image {
    max-width: 100%;
  }

  .about-hero-text .section-title {
    font-size: 1.5rem;
  }

  .about-section .section-title {
    font-size: 1.3rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .presence-card,
  .badge,
  .stat-item {
    padding: 1.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .timeline-year {
    font-size: 1.3rem;
  }

  .timeline-milestone {
    font-size: 1rem;
  }

  .badge-icon {
    font-size: 1.75rem;
  }

  .badge-title {
    font-size: 0.95rem;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .about-testimonial-quote {
    font-size: 1.1rem;
    padding: 1rem 0;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .section-text-centered {
    font-size: 0.95rem;
  }
}

/* ===================================
   Link in Bio / Linktree Page
   =================================== */

.linktree-section {
  padding: 2rem 0;
}

.linktree-container {
  max-width: 700px;
  margin: 0 auto;
}

.linktree-profile {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.linktree-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  object-fit: cover;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.linktree-name {
  font-size: 2rem;
  color: #d4d4d4;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.linktree-bio {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid-based Links Layout */
.linktree-links-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Primary CTA Card */
.linktree-card-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #ff6b6b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.linktree-card-primary:hover {
  background: linear-gradient(135deg, #323232 0%, #222 100%);
  border-color: #ff8585;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.15);
}

.linktree-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
}

.linktree-card-text {
  flex: 1;
  color: #d4d4d4;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.linktree-card-arrow {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 300;
}

/* Category Section */
.linktree-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linktree-category-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8b8b8;
  border-bottom: 1px solid rgba(255, 107, 107, 0.2);
  padding-bottom: 0.75rem;
  margin: 0;
}

/* Card Group for multiple links */
.linktree-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Small Card Style */
.linktree-card-small {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: rgba(212, 212, 212, 0.05);
  border: 1px solid #3a3a3a;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-height: 60px;
}

.linktree-card-small:hover {
  background-color: rgba(212, 212, 212, 0.1);
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

.linktree-card-small .linktree-card-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}

/* Glitter Animation for Annex Button */
.glitter-wrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
}

.annex-button {
  position: relative;
  z-index: 2;
  width: 100%;
}

.glitter-particles {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
  animation: softGlow 2s ease-in-out infinite;
}

@keyframes softGlow {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(212, 175, 55, 0.4),
      0 0 25px rgba(212, 175, 55, 0.2),
      inset 0 0 20px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(212, 175, 55, 0.6),
      0 0 35px rgba(255, 215, 0, 0.3),
      inset 0 0 20px rgba(212, 175, 55, 0.2);
  }
}

/* Pixie Dust Mouse Trail */
.pixie-dust {
  position: fixed;
  pointer-events: none;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.9), rgba(212, 175, 55, 0.7));
  box-shadow: 0 0 3px rgba(212, 175, 55, 0.9);
  animation: pixieFall 2s ease-in forwards;
  z-index: 1000;
}

@keyframes pixieFall {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(80px) translateX(0);
  }
}

/* Page Transitions */
body {
  transition: opacity 100ms ease-in-out;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 1;
  transform: translateY(15px);
}

.scroll-animate.animate-in {
   animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* Smooth staggered animations without harsh delays */
.scroll-animate:nth-child(1).animate-in {
  animation-delay: 0s;
}

.scroll-animate:nth-child(2).animate-in {
  animation-delay: 0.05s;
}

.scroll-animate:nth-child(3).animate-in {
  animation-delay: 0.1s;
}

.scroll-animate:nth-child(4).animate-in {
  animation-delay: 0.15s;
}

.scroll-animate:nth-child(5).animate-in {
  animation-delay: 0.2s;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body,
  .scroll-animate,
  .scroll-animate.animate-in {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive Linktree */
@media (max-width: 768px) {
  .linktree-container {
    max-width: 100%;
  }

  .linktree-avatar {
    width: 130px;
    height: 130px;
  }

  .linktree-name {
    font-size: 1.75rem;
  }

  .linktree-bio {
    font-size: 0.95rem;
  }

  .linktree-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .linktree-container {
    padding: 0 1rem;
  }

  .linktree-profile {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .linktree-avatar {
    width: 110px;
    height: 110px;
  }

  .linktree-name {
    font-size: 1.5rem;
  }

  .linktree-bio {
    font-size: 0.9rem;
  }

  .linktree-links-grid {
    gap: 2rem;
  }

  .linktree-card-primary {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .linktree-card-text {
    font-size: 1.1rem;
  }

  .linktree-card-group {
    grid-template-columns: 1fr;
  }

  .linktree-card-small {
    padding: 1rem;
    min-height: 50px;
  }

  .linktree-card-small .linktree-card-text {
    font-size: 0.9rem;
  }
}
/* ===================================
   Booking Form Styles
   =================================== */

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  font-size: 2rem;
  color: #c9a96e;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.form-intro {
  text-align: center;
  color: #a8a8a8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.required {
  color: #8b2635;
}

.form-control {
  width: 100%;
  padding: 0.875rem;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-control:disabled {
  background-color: #0f0f0f;
  color: #808080;
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  padding: 0.875rem;
}

.form-hint {
  display: block;
  color: #808080;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.error-message {
  display: block;
  color: #8b2635;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.inline-message {
  padding: 0.75rem;
  background-color: rgba(139, 38, 53, 0.1);
  border-left: 3px solid #8b2635;
  color: #c9a3a3;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.info-message {
  padding: 1rem;
  background-color: rgba(201, 169, 110, 0.1);
  border-left: 3px solid #c9a96e;
  color: #d4d4d4;
  border-radius: 2px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  margin-top: 0.75rem;
}

.radio-item,
.checkbox-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #c9a96e;
  margin: 0;
}

.radio-label,
.checkbox-label {
  cursor: pointer;
  color: #d4d4d4;
  font-size: 0.95rem;
  user-select: none;
  line-height: 1.4;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 2px solid #c9a96e;
  outline-offset: 2px;
}

/* Fieldset */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

/* Form Divider */
.form-divider {
  border: none;
  height: 1px;
  background-color: #1a1a1a;
  margin: 2.5rem 0;
}

.form-optional-label {
  display: block;
  color: #c9a96e;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Visually Hidden Class for Honeypot */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-actions .btn {
  min-width: 250px;
}

.btn:disabled {
  background-color: #0f0f0f;
  color: #808080;
  border-color: #2a2a2a;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Privacy Note */
.form-privacy-note {
  text-align: center;
  color: #808080;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.5;
}

/* Responsive Form */
@media (max-width: 768px) {
  .form-container {
    max-width: 100%;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-control {
    padding: 0.75rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  textarea.form-control {
    min-height: 100px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .radio-item,
  .checkbox-item {
    margin-bottom: 0.875rem;
  }

  .form-divider {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .form-intro {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-control {
    font-size: 16px;
  }

  .form-hint {
    font-size: 0.8rem;
  }

  .error-message {
    font-size: 0.8rem;
  }

  input[type="radio"],
  input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .radio-label,
  .checkbox-label {
    font-size: 0.9rem;
  }

  .form-privacy-note {
    font-size: 0.8rem;
  }
}

/* ===================================
   Footer Social Media Bar
   =================================== */

.footer-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #d4d4d4;
  background-color: rgba(212, 212, 212, 0.05);
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #fff;
  background-color: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Footer Social */
@media (max-width: 768px) {
  .footer-social {
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .footer-social {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* ===================================
   Search Styles
   =================================== */

.search-btn {
  background: none;
  border: none;
  color: #d4d4d4;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: #b8b8b8;
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 2rem 0;
  overflow-y: auto;
}

.search-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.search-modal-content {
  width: 100%;
  max-width: 700px;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  margin: 2rem auto;
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.search-input {
  flex: 1;
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2);
}

.search-close-btn {
  background: none;
  border: none;
  color: #b8b8b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}

.search-close-btn:hover {
  color: #d4d4d4;
}

.search-results {
  max-height: 500px;
  overflow-y: auto;
  padding: 1rem;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-item {
  display: block;
  padding: 1rem;
  background-color: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: #d4d4d4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background-color: #151515;
  border-color: #ff6b6b;
  transform: translateX(4px);
}

.search-result-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #d4d4d4;
}

.search-result-url {
  font-size: 0.85rem;
  color: #888;
}

.search-message {
  padding: 2rem 1rem;
  text-align: center;
  color: #888;
  font-size: 0.95rem;
}

/* Responsive Search */
@media (max-width: 768px) {
  .search-modal {
    padding: 1rem;
  }

  .search-modal-content {
    margin: 0;
    border-radius: 4px;
  }

  .search-modal-header {
    padding: 1rem;
  }

  .search-input {
    font-size: 16px;
  }

  .search-results {
    max-height: 400px;
  }

  .search-result-item {
    padding: 0.75rem;
  }

  .search-result-title {
    font-size: 0.95rem;
  }

  .search-result-url {
    font-size: 0.75rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ===================================
   The Annex Banner Styles
   =================================== */

.annex-banner-section {
  background-color: #1a1a1a;
  padding: 3rem 0;
}

.annex-banner-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.annex-banner-link:hover {
  transform: translateY(-2px);
}

.annex-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.15) 0%, rgba(139, 0, 20, 0.15) 100%);
  border: 1px solid rgba(180, 20, 40, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.annex-banner-link:hover .annex-banner-content {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.25) 0%, rgba(139, 0, 20, 0.25) 100%);
  border-color: rgba(180, 20, 40, 0.5);
}

.annex-banner-logo {
  height: 300px;
  width: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.annex-banner-text {
  text-align: center;
}

.annex-banner-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.annex-banner-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
  font-style: italic;
  margin: 0 0 1.5rem 0;
}

.annex-join-btn {
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.annex-join-btn:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
}

/* Responsive Annex Banner */
@media (max-width: 768px) {
  .annex-banner-section {
    padding: 2rem 0;
  }

  .annex-banner-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .annex-banner-logo {
    height: 60px;
  }

  .annex-banner-title {
    font-size: 1.25rem;
  }

  .annex-banner-tagline {
    font-size: 0.85rem;
  }
}

/* ===================================
   Booking CTA Banner Styles
   =================================== */

.booking-cta-banner {
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.15) 0%, rgba(139, 0, 20, 0.15) 100%);
  border: 1px solid rgba(180, 20, 40, 0.3);
  padding: 3rem 0;
  margin: 2rem 0;
}

.booking-cta-content {
  text-align: center;
  padding: 2rem;
}

.booking-cta-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-cta-text {
  font-size: 1rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Booking CTA Banner */
@media (max-width: 768px) {
  .booking-cta-banner {
    padding: 2rem 0;
    margin: 1rem 0;
  }

  .booking-cta-content {
    padding: 1.5rem;
  }

  .booking-cta-title {
    font-size: 1.5rem;
  }

  .booking-cta-text {
    font-size: 0.9rem;
  }
}

/* ===================================
   Back to Top Button
   =================================== */

#backToTopBtn {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #d4af37;
  color: #1a1a1a;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

#backToTopBtn:hover {
  background-color: #e5c158;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

#backToTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:active {
  transform: translateY(-1px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  #backToTopBtn {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
/* Failsafe styling for age-gate page */
body.age-gate-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

body.age-gate-page a,
body.age-gate-page button,
body.age-gate-page label,
body.age-gate-page select,
body.age-gate-page option {
  color: #fff;
}

.age-gate-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.age-gate-card h1,
.age-gate-card h2,
.age-gate-card p {
  color: #fff;
}

.age-gate-card select,
.age-gate-card button {
  width: 100%;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

#ageError {
  margin-top: 10px;
  color: #ffb3b3;
}

/* ===================================
   Event Marquee Advertisement
   =================================== */

.event-marquee {
  background-color: #7d1f2b;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.8rem 0;
  border-bottom: 2px solid #5a1620;
}

.marquee-content {
  display: flex;
  animation: scroll-left 20s linear infinite;
  gap: 2rem;
}

.marquee-text {
  display: inline-block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.marquee-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.marquee-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.event-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* ===================================
   Logo Links
   =================================== */

.site-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

/* ===================================
   Parallax Background Strip
   =================================== */

.parallax-strip {
  height: 400px;
  background-image: url('Assets/Images/lenore8.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.3);
}

/* ===================================
   Parallax Effect for Intro Image
   =================================== */

.intro-image {
  will-change: transform;
  transition: transform 0.1s ease-out !important;
}

/* ===================================
   Blog Styles
   =================================== */

.blog-section {
  padding: 4rem 0;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-main {
  max-width: 800px;
}

.blog-entry {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #1a1a1a;
}

.blog-entry:last-child {
  border-bottom: none;
}

.blog-date {
  display: block;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-transform: none;
}

.blog-title a {
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #c9a96e;
}

.blog-excerpt {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: #c9a96e;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #d4d4d4;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #d4d4d4;
}

.archive-list {
  list-style: none;
}

.archive-list li {
  margin-bottom: 0.8rem;
}

.archive-list a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.archive-list a:hover {
  color: #c9a96e;
}

.post-count {
  color: #666;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* Blog Post Page */
.blog-post-section {
  padding: 4rem 0;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-back-link {
  display: inline-block;
  color: #c9a96e;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.blog-back-link:hover {
  color: #d4d4d4;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.blog-post-image {
  margin: 2rem 0;
  text-align: center;
}

.blog-post-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: inline-block;
}

.blog-post-body {
  line-height: 1.9;
  color: #d4d4d4;
}

.blog-post-body p {
  margin-bottom: 1.5rem;
}

.blog-post-body h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-body h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

/* Footer Featured Section */
.footer-featured {
  margin: 2rem 0;
  text-align: center;
}

.featured-title {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #888;
}

.footer-featured img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.footer-featured img:hover {
  transform: scale(1.05);
}

/* Responsive Blog */
@media (max-width: 968px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-sidebar {
    position: static;
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 1.5rem;
  }

  .blog-post-title {
    font-size: 2rem;
  }
}

