/* Custom Styles for Bayson Website */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600&display=swap');

body {
    font-family: 'Titillium Web', sans-serif;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding-top: 70px;
    min-height: 35vh;
    background: linear-gradient(rgba(255, 107, 0, 0.8), rgba(229, 94, 0, 0.9)), url('../assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* List Checkmarks */
.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-check li:before {
    content: "✓";
    color: #ff6b00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Sections */
section {
    scroll-margin-top: 70px;
}

/* Footer */
footer ul li a:hover {
    opacity: 0.8;
}

.bg-dark {
    background-color: #212529 !important;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero {
        margin-top: 0;
        padding-top: 56px;
        min-height: 45vh;
    }
    
    section {
        scroll-margin-top: 56px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .btn {
        margin-bottom: 10px;
    }
    
    .service-image {
        height: 350px;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-image {
        height: 400px;
    }
    
    .hero {
        min-height: 40vh;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 40vh;
    }
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.service-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 10px 20px;
    font-family: 'Titillium Web', sans-serif;
}

.btn-primary {
    background-color: #ff6b00;
    border-color: #ff6b00;
}

.btn-primary:hover {
    background-color: #e55e00;
    border-color: #cc5500;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #ff6b00;
    border-color: #ff6b00;
}

.btn-light {
    color: #ff6b00;
    background-color: #fff;
    border-color: #fff;
}

.btn-light:hover {
    color: #fff;
    background-color: #ff6b00;
    border-color: #ff6b00;
}

.bg-primary {
    background-color: #ff6b00 !important;
}

.text-primary {
    color: #ff6b00 !important;
}