
@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: #f8f9fa;
    color: #222;
}

/* Primary color and button styles */
:root {
    --primary-color: #ed5a3b;
    --primary-dark: rgb(20, 21, 67);
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(237 90 59) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(237,90,59,0.08);
    transition: background 0.2s, color 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: #d94e32 !important;
    color: #fff !important;
}

header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    background: var(--primary-dark);
    color: #fff;
}

.nav-link {
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}

/* Nav link hover and active use primary color */
.nav-link.active, .nav-link:focus, .nav-link:hover {
    color: var(--primary-color);
}


.btn-dark {
    background: #222;
    border: none;
    font-weight: 500;
    border-radius: 12px;
}

.btn-dark:hover {
    background: #444;
}

/* Logo styling */
/* Logo text uses primary color */
.logo-text {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.9rem;
    color: #888;
}

/* Contact/help styling */
.header-contact {
    font-size: 0.95rem;
    color: #222;
}
.header-contact .fw-bold {
    font-size: 1.1rem;
}

/* Search and icon buttons */
.header-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: #222;
    transition: box-shadow 0.2s;
}
.header-icon:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {
    .container-fluid {
        padding: 0 10px;
    }
    .btn-dark {
        padding: 8px 18px;
        font-size: 1rem;
    }
}

footer {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: var(--primary-dark);
    color: #fff;
    padding: 24px 0 12px 0;
    font-size: 1rem;
}

/* Add more custom styles for sections, hero, forms, etc. as you build pages */

/* Home Page Layout & Section Styles */
.hero-slider-wrap {
    min-height: 580px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}
.hero-search-card {
    max-width: 1400px;
    margin-top: 120px;
}

@media (max-width: 991.98px) {
    .hero-search-card {
        margin-top: 60px;
        padding: 1.5rem 0.5rem;
    }
}
@media (max-width: 767.98px) {
    .hero-slider-wrap {
        min-height: 350px;
    }
    .hero-search-card {
        margin-top: 16px;
        padding: 1rem 0.5rem;
    }

}
/* Hero Title Section Styles */

.hero-title-wrap {

    margin-top: 60px;

    text-shadow: 0 2px 8px #000;

}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 150px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 39px;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
    background: #ed5a3b;
    border-radius: 70%;
}
