:root {
  --primary-color: #d2a25a;
  --text-color: #fdefd0;  /* light soft white */
  --bg-color: #0d0d0f;
  /* Alternative golds: #eab308, #fbbf24 */
}
html{
   scroll-behavior: smooth;
}
/* Main body styling */
body {
   font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color:var(--bg-color);
  letter-spacing: 0.02em; /* slight spacing for legibility */
  -webkit-font-smoothing: antialiased; /* better rendering on macOS */
  -moz-osx-font-smoothing: grayscale; /* smoother fonts on Firefox/Mac */
}

/* Paragraph specifics */
p {
  margin-bottom: 1.2rem;
}

/* Link styles for readability and elegance */
a {
  color: var(--primary-color); /* Match theme gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #1f909b; /* Soft gold accent on hover */
  text-decoration: none;
}

.container {
  max-width: 1450px;
  margin: 0 auto; /* Center the container */
  padding: 0 15px; /* Add some padding for spacing */
}


/* Headings with Playfair Display for contrast */
/* Headings */
h1, h2, h3, h4 {
  
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #d2a25a;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  body {
      font-size: 1rem; /* 16px on smaller screens for optimal readability */
  }
}/* Core Styling for All Buttons */
.btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  border-radius: 0rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Primary Button – Luxury Gold */
.btn-primary {
  background-color: #1f909b;
  color: #ffffff;
  border: none;
  /* Adapted box-shadow for teal background */
  box-shadow: 0 4px 12px rgba(31, 144, 155, 0.18);
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
 
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #197a83;
  color: #fff;
  /* Adapted box-shadow for teal background */
  box-shadow: 0 6px 18px rgba(31, 144, 155, 0.22);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25) inset;
}


/* Outline Primary – Deep Slate Border with Gold Hover */
.btn-outline-primary {
  background-color: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #1f2937;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(31, 41, 55, 0.15);
}


/* Accent Button – Rounded Gold Call to Action */
.btn-accent {
  background-color: #1f909b;
  color: #111;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
 
  border: none;
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #197a83
  transform: translateY(-2px);
  color: #000;
}


/* Outline Accent – Elegant Gold Stroke with Fill on Hover */
.btn-accent-outline {
  background: transparent;
  border: 2px solid #1f909b;
  color: #1f2937;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-accent-outline:hover,
.btn-accent-outline:focus {
  background-color: #1f909b;
  color: #000;
}



.home-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-section h2,
.home-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.home-section .section-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
}


.explore-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
}

.explore-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
}

.explore-card {
  border: none;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.text-accent {
  color: #006D77;
}

.newsletter-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color:#fff;
}

.newsletter-section input::placeholder {
  color: #888;
}

/* Footer Base */
.footer {
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 4rem 1rem;
}

/* Headings */
.footer h5,
.footer h6 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

/* Paragraphs */
.footer p {
  color: #555;
  margin-bottom: 0.5rem;
}

.footer .logo-footer img {
  width: 200px; /* Adjust as needed */
  height: auto;
  margin-bottom: 1rem;
}

/* Links */
.footer a {
  color: #1f909b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #004b50;
}

/* Social Icons */
.footer .fa {
  transition: color 0.3s ease;
}

.footer .fa:hover {
  color: #1f909b; /* Optional accent on hover */
}

/* Divider line (optional) */
.footer hr {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Bottom copyright */
.footer .small {
  font-size: 0.85rem;
  color: #777;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .footer .text-center {
    margin-top: 2rem;
  }
  
.hero-first .hero-box {
  height: 400px;
}

}


.post-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.post-card-img {
  height: 250px;
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.post-card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}


.register-page,.login-page{
  padding-top:40px;
  padding-bottom:40px;
}
.register-page h1, .login-page h1{
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.register-container{
 
  max-width: 500px; /* Limit the width for larger screens */
  background-color: #fff; /* White background for the form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside the form */
  
  margin: 0 auto; /* Center horizontally */
  display: block; /* Ensure block-level element */
}
.login-container{

  max-width: 500px; /* Limit the width for larger screens */
  background-color: #fff; /* White background for the form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside the form */
  
  margin: 0 auto; /* Center horizontally */
  display: block; /* Ensure block-level element */
 
}

.body-account {
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

/* Sidebar */
.body-account .sidebar {
  background-color: #ffffff;
  width: 260px;
  min-height: 100vh;
  padding: 1.5rem 1rem;
  border-right: 1px solid #e4e4e4;
  transition: all 0.3s ease;
  position: fixed;
}

.body-account .sidebar .logo img {
  max-width: 140px;
  margin-bottom: 1.5rem;
}

.body-account .sidebar .menu ul {
  list-style: none;
  padding-left: 0;
}

.body-account .sidebar .menu li {
  margin-bottom: 0.75rem;
}

.body-account .sidebar .menu a {
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.body-account .sidebar .menu a:hover,
.body-account .sidebar .menu a.active {
  background-color: #eaf6f6;
  color: #006d77;
}

.body-account .sidebar .menu i {
  margin-right: 0.5rem;
}
.body-account .sidebar-toggle {
  display: none; /* Hide the toggle button on larger screens */
}

/* Sidebar divider */
.body-account .sidebar .divider {
  margin: 1rem 0;
  border-top: 1px solid #ddd;
}

/* Main page wrapper */
.body-account .page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 260px; /* Sidebar width */
}

/* Page content area */
.body-account .page-content {
  padding: 2rem;
}

/* Mobile header */
.body-account .header-mobile {
  background-color: #ffffff;
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
}

.body-account .header-mobile .logo img {
  max-width: 120px;
}

.body-account .header-mobile .buttons i {
  font-size: 1.4rem;
  color: #444;
}

/* Form titles and sections */
.body-account h1.title-main {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.body-account .subtitle-main {
  font-size: 1rem;
  color: #777;
}

/* Profile form */
.body-account .profile-picture {
  border-radius: 50%;
  border: 2px solid #ddd;
  object-fit: cover;
}

.body-account .form-label {
  font-weight: 500;
}

.body-account .form-text.text-muted {
  font-size: 0.85rem;
}

/* Button style overrides */
.body-account .btn.btn-warning {
  background-color: #ffcc00;
  color: #000;
  border: none;
}

.body-account .btn.btn-success {
  background-color: #006d77;
  border: none;
}

.body-account .btn.btn-success:hover {
  background-color: #005c66;
}

/* Footer */
.body-account .footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid #ddd;
  background-color: #f1f1f1;
}

.body-account .footer-links a {
  color: #1f909b;
  margin: 0 0.5rem;
  text-decoration: none;
}

.body-account .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .body-account .sidebar {
    position: absolute;
    left: -260px;
    top: 0;
    z-index: 999;
    height: 100%;
    background: #fff;
  }

  .body-account .sidebar.open {
    left: 0;
    transition: left 0.3s ease;
  }

  .body-account .page-content {
    padding: 1.5rem;
  }
}


.posts-page{
  padding-top: 60px;
  padding-bottom: 60px;
}


.posts-page-detail {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.posts-page-detail .card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #ffffff;
}

.posts-page-detail .post-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.posts-page-detail .card-body {
  padding: 2.5rem 2rem;
}

.posts-page-detail .card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
}

.posts-page-detail .text-muted {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.posts-page-detail .card-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

.posts-page-detail .card-text h2,
.posts-page-detail .card-text h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.posts-page-detail .card-text p {
  margin-bottom: 1.25rem;
}

.posts-page-detail .post-date{
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  display:inline-block;
  margin-left:10px;
}

/* Optional: Images inside content */
.posts-page-detail .card-text img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Wrapper List */
.custom-category-list {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Individual Badge Style */
.custom-category-badge {
  display: inline-block;
  padding: 0.5em 0.9em;
  font-size: 0.875rem;
  background-color: #e0f3f3;
  color: #5283cb;
  border-radius: 50rem;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.custom-category-badge:hover,
.custom-category-badge:focus {
  background-color: #5283cb;
  color: #fff;
  text-decoration: none;
}



.default-page-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}

.default-page-wrapper .page-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.default-page-wrapper .page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.default-page-wrapper .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  justify-content: center;
}

.default-page-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #999;
  padding: 0 0.5rem;
}

.default-page-wrapper .breadcrumb a {
  color: #006d77;
  text-decoration: none;
}

.default-page-wrapper .breadcrumb a:hover {
  text-decoration: underline;
}

.default-page-wrapper .page-banner img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.default-page-wrapper .page-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}
.default-page-wrapper .page-content-full {
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

.default-page-wrapper .page-content h2,
.default-page-wrapper .page-content h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.default-page-wrapper .page-content p {
  margin-bottom: 1.25rem;
}

.blog-categories-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-categories-page .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.blog-categories-page .lead {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-categories-page .category-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  color: #004b50;
}

.blog-categories-page .text-muted {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.blog-categories-page .row.g-3 > .col-lg-4 {
  margin-bottom: 1rem;
}

.blog-categories-page .btn.btn-primary {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.4rem;
}

.highlight-box {
  background: #fdf5e6;
  color: #333;
  border-left: 4px solid #5283cb;
  padding: 1rem 1.5rem;

  font-size: 1rem;
  font-weight: 500;
 
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


/* 404 Error Page Styles */
/* Elegant 404 Page Styles */
.tgj-404 {
  min-height: 100vh;
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  padding: 4rem 1rem;
  color: #f4c46e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tgj-404 .container {
  max-width: 600px;
  width: 100%;
}

.tgj-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: #f4c46e;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(244, 196, 110, 0.5);
}

.tgj-404 .error-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.tgj-404 .error-description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.tgj-404 .error-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  background-color: #f4c46e;
  color: #111;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tgj-404 .error-button:hover {
  background-color: #e2b957;
  color: #000;
}


/* Next Things */



.contact-form .form-control {
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #006D77;
  box-shadow: none;
}

.contact-form button {
  font-weight: 500;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
}

.contact-info i {
  width: 24px;
  text-align: center;
}




/* ZA BALLER */

.site-header{
  
}
.site-header.site-header-homepage{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

}
@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }
  .site-header{
    background:#000;
  }
 
}
.site-header.site-header-homepage.site-header-floating{
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.site-header .site-header-nav .nav-link{
  color:var(--text-color);
  font-weight:600;
}


.site-footer {
  background: #18181b;
  color: #fdefd0;
  padding: 2.5rem 0 1.5rem 0;
  font-size: 1rem;
  border-top: 1px solid #23232a;
}

.site-footer .container {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer p {
  margin-bottom: 0.5rem;
  color: #fdefd0;
}

.site-footer .text-warning {
  color: #eab308;
  font-weight: 700;
}

.site-footer .nav {
  margin-top: 0.5rem;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer .nav-link {
  color: #fdefd0;
  font-weight: 500;
  padding: 0;
  background: none;
  border: none;
  transition: color 0.2s;
  font-size: 1rem;
}

.site-footer .nav-link:hover,
.site-footer .nav-link:focus {
  color: #eab308;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-footer {
    font-size: 0.95rem;
    padding: 2rem 0 1rem 0;
  }
  .site-footer .nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}


.hero{

}
.hero .lead{
  color: rgba(255, 255, 255, 0.75)
}
/* Pyramid Wrapper */
.pyramid-wrapper {
  
  padding: 5rem 1rem;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Row styling */
.pyramid-wrapper .p-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

/* Box styling */
.pyramid-wrapper .p-row .p-box {
  background: linear-gradient(135deg, #b4883e 0%, #f5e2b8 100%);
  color: #111;
  padding: 1.2rem 1rem;
  border-radius: 0px;
  font-weight: 600;
  font-size: 1rem;
  width: 96px;
  height: 96px;
  box-shadow:
    0 8px 24px rgba(251, 191, 36, 0.3),
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(234, 179, 8, 0.4);
  cursor:pointer;
}

.pyramid-wrapper .p-row .p-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(255, 215, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.1);
}

/* Price Text */
.pyramid-wrapper .p-row .p-box small {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}



.pyramid-wrapper .p-row .p-box-taken {
  background: linear-gradient(145deg, #1b1b1b, #101010);
  border: 1px solid #f4c46e;
  color: #f4c46e;
  padding: 0px;
  border-radius: 0px;
  text-align: center;
  font-weight: 600;
  width: 100px;
  box-shadow: 0 0 12px rgba(244, 196, 110, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow:hidden;
}

.pyramid-wrapper .p-row .p-box-taken:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(244, 196, 110, 0.5);
}

.pyramid-wrapper .p-row .p-box-taken .p-box-label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #f4c46e;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

.pyramid-wrapper .p-row .p-box-taken .p-box-image img {
 width:100%;
 height:100%;
  object-fit: cover;
  border: 0px solid #f4c46e;
  box-shadow: 0 0 6px rgba(244, 196, 110, 0.3);
  object-fit: cover;
}



.pyramid-wrapper .p-row .p-box-reserved {
  background: repeating-linear-gradient(
    45deg,
    #1f1f1f,
    #1f1f1f 10px,
    #292929 10px,
    #292929 20px
  );
  border: 2px dashed #f4c46e;
  color: #bbb;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  width: 100px;
  box-shadow: 0 0 8px rgba(244, 196, 110, 0.2);
  position: relative;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.pyramid-wrapper .p-row .p-box-reserved:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(244, 196, 110, 0.3);
}

.pyramid-wrapper .p-row .p-box-reserved .p-box-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #f4c46e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pyramid-wrapper .p-row .p-box-reserved small {
  font-size: 0.55rem;
  color: #fff;
  display: block;
  margin-top: 0.3rem;
}



.col-form-label{
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
/* Empty box (for alignment only) */
.pyramid-wrapper .p-row .p-box.empty {
  visibility: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .pyramid-wrapper .p-row .p-box {
    width: 64px;
    height: 64px;
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  .pyramid-wrapper .p-row .p-box small {
    font-size: 0.7rem;
  }
}


/* About Section */
.about-section {
  background-color: #0d0d0f;
  padding: 5rem 1rem;
}

.about-section .about-section-title {
  font-size: 2.25rem;
  color: #f4c46e;
  margin-bottom: 1rem;
}

.about-section .about-section-text {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background-color: #000;
  padding: 5rem 1rem;
}

.faq-section .faq-section-title {
  font-size: 2rem;
  color: #f4c46e;
  margin-bottom: 2rem;
}
.faq-section .accordion {
  background: none;
  border-radius: 0;
  border: none;
}

.faq-section .accordion-item {
  background: #18181b;
  border: none;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(244, 196, 110, 0.07);
  overflow: hidden;
}

.faq-section .accordion-header {
  margin-bottom: 0;
}

.faq-section .accordion-button {
  background: #18181b;
  color: #f4c46e;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.25rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 2px #d2a25a33;
  outline: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #0d0d0f;
  color: #eab308;
  box-shadow: 0 6px 24px rgba(244, 196, 110, 0.13);
}

.faq-section .accordion-button::after {
  filter: invert(80%) sepia(70%) saturate(400%) hue-rotate(10deg);
}

.faq-section .accordion-body {
  background: #23232a;
  color: #fdefd0;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #333;
}

.faq-section .accordion-collapse {
  border: none;
}

@media (max-width: 600px) {
  .faq-section .accordion-button,
  .faq-section .accordion-body {
    padding: 1rem;
    font-size: 1rem;
  }
}

.text-warning{
  color: #d2a25a !important;
}

/* Warning Button – Uses Primary Color */
.btn-warning {
  background-color: var(--primary-color);

}

/* Social Proof Section */
.social-proof-section {
  background-color: #0d0d0f;
  color: #f5f5f5;
  padding: 4rem 1rem;
  border-top: 1px solid #2a2a2a;
  text-align: center;
}

.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-title {
  color: #f4c46e;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.social-proof-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.social-proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.social-proof-card {
  background-color: #000;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(244, 196, 110, 0.3);
}

.social-proof-card-title {
  color: #f4c46e;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-proof-card-text {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.social-proof-card-handle {
  color: #888;
  font-size: 0.85rem;
  text-align: right;
}


/* Claim Your Spot Section */
.claim-section {
  background-color: #0d0d0f;
  color: #f5f5f5;
  padding: 5rem 1rem;
  text-align: center;
  border-top: 1px solid #2a2a2a;
}

.claim-container {
  max-width: 800px;
  margin: 0 auto;
}

.claim-title {
  color: #f4c46e;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.claim-subtitle {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.claim-btn {
  display: inline-block;
  background-color: #f4c46e;
  color: #111;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.claim-btn:hover {
  background-color: #eab850;
  transform: translateY(-2px);
}

.inside-modal{
  max-width:800px;
}


.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.548);
  backdrop-filter: blur(8px);
  transition: background 0.3s, backdrop-filter 0.3s;
}

.text-muted{
  color: #aaa !important; 
}


@media (max-width: 576px) {
  .pyramid-wrapper {
    padding: 2rem 0.5rem;
  }

   
  .pyramid-wrapper{
    overflow:hidden;
  }
  .pyramid-wrapper .p-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1rem;
    scroll-snap-type: x mandatory;
  }

    .pyramid-wrapper .p-row:nth-child(-n+5) {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pyramid-wrapper .p-box {
    min-width: 60px;
    max-width: 60px;
    font-size: 0.75rem;
    padding: 0.5rem;
    scroll-snap-align: center;
  }

  .pyramid-wrapper .p-box small {
    font-size: 0.65rem;
  }
}