body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background: #111;
    margin: 0;
}

header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)), url('public/images/hero/hero.jpg') center/cover fixed;
    height: 100vh;
    display: flex;
    align-items: center;
}

.intro-text {
    text-align: center;
    margin: 0 auto;
    padding: 120px 0;
}

.intro-lead-in {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.intro-heading {
    font-size: 48px;
    font-family: 'Kaushan Script', cursive;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.btn-xl {
    font-size: 16px;
    padding: 14px 30px;
    margin: 8px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    background: #f05f40;
    border: none;
    color: #fff;
}

.btn-xl:hover {
    background: #dc4e2a;
}

section {
    padding: 80px 0;
}

.section-heading {
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subheading {
    font-size: 18px;
    font-family: 'Droid Serif', serif;
}

.bg-light-gray {
    background: #f4f4f4;
    color: #111;
}

.text-muted {
    color: inherit;
    opacity: 0.8;
}


.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-grid .portfolio-item {
    width: 100%;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item .portfolio-hover {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.portfolio-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.portfolio-link > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.portfolio-hover .portfolio-hover-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(240, 95, 64, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-hover .portfolio-hover-content {
    opacity: 1;
}

.carousel-inner > .item > img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    margin: auto;
}

.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid #f05f40;
}

.team-member .img-centered {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


footer {
    padding: 40px 0;
    background: #0d0d0d;
    color: #bbb;
}

.navbar {
    background: rgba(15, 15, 15, 0.85);
    border: none;
    transition: background 0.2s ease, padding 0.2s ease;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff !important;
    transition: gap 0.2s ease;
}

.navbar .navbar-brand img {
    height: 34px;
    width: auto;
    display: block;
    transition: height 0.2s ease;
}

.navbar .nav > li > a {
    color: #fff;
    letter-spacing: 0.5px;
}

.navbar.at-top {
    background: transparent;
}

.navbar.at-top .navbar-brand img {
    height: 54px;
}

.modal-body {
    padding: 40px 0;
}

.modal-body img {
    margin-bottom: 20px;
}

.modal-body h2 {
    margin-bottom: 10px;
}

.modal-content {
    background: #111;
    color: #fff;
    border: none;
}

.portfolio-modal .btn-primary {
    background: #f05f40;
    border-color: #f05f40;
}

.portfolio-modal .btn-primary:hover {
    background: #dc4e2a;
    border-color: #dc4e2a;
}

.policy-page {
    background: #f4f4f4;
    color: #111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-page .navbar,
.policy-page .navbar.at-top {
    background: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.policy-page .navbar .nav > li > a {
    color: #fff;
}

.policy-content {
    padding-top: 120px;
    flex: 1;
}

.policy-card {
    background: #fff;
    color: #111;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.policy-card h1,
.policy-card h2,
.policy-card h3,
.policy-card h4 {
    color: #111;
}

.policy-card a {
    color: #f05f40;
}

.policy-card a:hover {
    color: #dc4e2a;
}
