/* Global CSS styles for SentryPage */

/* Basic layout styles */
.sentrypage-pricing-plan-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Unsupported browser warning */
.unsupported {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  text-align: center;
  border: 1px solid #f5c6cb;
}

/* Layout structure */
#__nuxt {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#__layout {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header styling */
.vue-fixed-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.placeholder-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main content area */
main {
  flex: 1;
  padding: 0;
}

.placeholder-main {
  min-height: 50vh;
}

/* Footer styling */
.placeholder-footer {
  margin-top: auto;
}

/* Basic responsive grid system */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-8, .col-lg-10, .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

.justify-content-center {
  justify-content: center !important;
}

/* Basic typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #2c3e50;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #3498db;
  color: #fff;
  border-color: #3498db;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  color: #fff;
  text-decoration: none;
}

/* Page header styles */
.page__header {
  padding: 2rem 0;
  text-align: center;
}

.page__header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.page__header__caption p {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
}

/* Breadcrumb styles */
.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
}

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.breadcrumb__list li {
  margin-right: 0.5rem;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #6c757d;
}

/* Section spacing */
.section {
  padding: 2rem 0;
}

/* Utility classes */
.sp-text-center {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .page__header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .page__header {
    padding: 1.5rem 0;
  }
  
  .page__header h1 {
    font-size: 1.75rem;
  }
}
