/* Custom styles for The Jag Lab - Bootstrap 5 overrides */

:root {
    --bs-body-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Letter spacing utility */
.letter-spacing {
    letter-spacing: 2px;
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Custom card hover effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Section title underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #000;
    margin: 1rem auto 0;
}

/* Feature check icons */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000;
}

/* Navbar active state */
.navbar-dark .nav-link.active {
    border-bottom: 2px solid #fff;
}

/* Form inputs */
.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

/* Button overrides for black/white theme */
.btn-dark {
    background-color: #000;
    border-color: #000;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}

.btn-outline-light:hover {
    color: #000;
}

/* Image hover effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* About image styling */
.about-image {
    position: relative;
}

.about-image img {
    object-fit: cover;
}

/* Page header with background */
.page-header-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.page-header-bg .container {
    position: relative;
    z-index: 1;
}
