/* Landing Page Styles - Bootstrap Utilities & Hero Section */

/* Bootstrap Typography Utilities */
.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Display Classes */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

/* Font Weight Utility */
.font-weight-bold {
    font-weight: 700 !important;
}

/* Spacing Utilities */
.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pt-lg-5 {
    padding-top: 3rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

@media (min-width: 992px) {
    .pt-lg-5 {
        padding-top: 3rem !important;
    }
}

/* Bootstrap Grid */
.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.justify-content-center {
    justify-content: center !important;
}

.col-lg-8 {
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .col-lg-8 {
        width: 66.66666667%;
    }
}

/* Image Utilities */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Page Layout & Behavior */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior: none;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar completely for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Content needs higher z-index */
section {
    position: relative;
    z-index: 1;
}

/* Hero Section Specific Styles */
#hero-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#hero-section h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero-section .lead {
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Text Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.text-highlight {
    background-color: rgba(200, 200, 200, 0.85);
    color: #2d2d2d;
    padding: 0.2em 0.4em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.8;
    text-shadow: none;
}

/* Feature Points Styling */
.feature-points {
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.feature-points .star-icon {
    margin-right: 0.5rem;
}

/* Logo Responsive Sizing */
.logo-responsive {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Smaller logo on mobile */
@media (max-width: 768px) {
    .logo-responsive {
        max-width: 200px;
    }
}
