/* Typography */
h1 {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
}

h2, h3, h4, h5 {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

p {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* Navigation */
.navbar-brand {
    padding: 4px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    background: url("/images/hero-homepage.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
}

.hero h2 {
    color: #fff;
    font-size: 1.5rem;
}

.hero h3 {
    color: #fff;
}

/* Conversion Box */
.conversionbox {
    background-color: rgba(0, 0, 0, 0.8);
    border-left: 3px solid #ffc800;
    padding: 20px;
    border-radius: 5px;
}

.conversionbox h3 {
    color: #fff;
    border-bottom: 2px solid #666;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.conversionbox p {
    color: #fff;
}

.conversionbox ol {
    color: #fff;
    padding-left: 20px;
}

.conversionbox li {
    margin-bottom: 10px;
}

.conversionbox a.phonecall {
    color: #ffc800;
    text-decoration: underline;
    font-weight: 600;
}

.conversionbox a.phonecall:hover {
    color: #ffd633;
}

/* Footer */
footer {
    background-color: #222;
}

footer h5 {
    color: #ffc800;
    margin-bottom: 15px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffc800 !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .conversionbox {
        margin-top: 30px;
        background-color: rgba(0, 0, 0, 0.8);
        border-left: 3px solid #ffc800;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 350px;
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-yellow {
    color: #ffc800;
}

.btn-warning {
    background-color: #ffc800;
    border-color: #ffc800;
    color: #000;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #ffd633;
    border-color: #ffd633;
    color: #000;
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #ffc800;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .conversionbox,
    .btn {
        display: none;
    }

    .hero {
        min-height: auto;
        background: none;
    }

    .hero h1,
    .hero h2 {
        color: #000;
    }
}