@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Custom Red Color Variable */
:root {
    --harbor-red: #d92027;
}

body {
    font-family:  "Montserrat", sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.bg-black {
    background-color: #000 !important;
}

.text-danger {
    color: var(--harbor-red) !important;
}

.btn-danger {
    background-color: var(--harbor-red);
    border-color: var(--harbor-red);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #b01a1f;
    border-color: #b01a1f;
}

/* Hero Carousel — scoped to #heroCarousel only, so these rules don't leak
   into other Bootstrap carousels on the page (e.g. the Services slider). */
#heroCarousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Darken the image slightly */
#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

#heroCarousel .carousel-caption {
    z-index: 2;
    bottom: 40%;
}

/* Angular Red Overlay in Header */
/* This simulates the diagonal red shape in the top left corner of the screenshot */
.angular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, var(--harbor-red) 50%, transparent 50%);
    z-index: 2;
    pointer-events: none; /* Let clicks pass through */
    opacity: 0.9;
}

/* Responsive adjustments for the overlay */
@media (max-width: 768px) {
    .angular-overlay {
        width: 70%;
        background: linear-gradient(120deg, var(--harbor-red) 60%, transparent 60%);
    }
    
    #heroCarousel .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .services-carousel {
        padding: 0 50px;
    }

    .services-carousel-control {
        width: 36px;
        height: 36px;
    }
}

/* ── Our Services slider ──────────────────────────────────────────── */
.services-carousel {
    position: relative;
    padding: 0 64px;
}

.service-card {
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12) !important;
}

.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.services-carousel-control {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--harbor-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 1;
    z-index: 5;
    transition: background-color .2s ease;
}

.services-carousel-control:hover {
    background-color: #b01a1f;
}

.services-carousel-control.carousel-control-prev {
    left: 0;
}

.services-carousel-control.carousel-control-next {
    right: 0;
}

.services-carousel-indicators {
    position: static;
    margin: 2rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.services-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    text-indent: -9999px;
}

.services-carousel-indicators button.active {
    background-color: var(--harbor-red);
}

/* Section Dividers */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--harbor-red);
    opacity: 1;
    border: none;
}

/* Image Hover Effects */
img {
    transition: transform 0.3s ease;
}

img:hover {
    /* Slight zoom on hover for images */
    /* opacity: 0.9; */
}

/* Footer Links */
footer a:hover {
    color: var(--harbor-red) !important;
}

/* Container for the image and overlay */
.hover-overlay-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem; /* Replaces the mb-3 on images for consistent spacing */
}

/* The Overlay - Hidden by default (opacity 0) */
.overlay-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(217, 32, 39, 0.85); /* Harbor Red with 85% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Reveal overlay on hover */
.hover-overlay-container:hover .overlay-content {
    opacity: 1;
}

/* White Text Style */
.overlay-content .text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid white;
    padding: 10px 20px;
    text-transform: uppercase;
}

/* Optional: Slight image zoom effect */
.hover-overlay-container img {
    transition: transform .5s ease;
}

.hover-overlay-container:hover img {
    transform: scale(1.05);
}

/* Multi-level Dropdown Logic */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Show submenu on hover for better UX (optional) */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Harbor Red theme for active dropdown items */
.dropdown-item:active, .dropdown-item:hover {
    background-color: #d92027 !important;
}

/* Ensure the navbar background stays black */
.bg-black {
    background-color: #000 !important;
}

/* Space out the items slightly */
.nav-link {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#contactImg{
background-image: url('http://127.0.0.1:8000/images/contact-banner.webp');
  height: 66vh;
  background-size: cover;
  background-position: center;
  }

/* Bordered whitesmoke sections used inside multi-part forms
   (Photoshoot Request, Employee Personal Information) */
.form-section {
    background-color: whitesmoke;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Submit button on the sectioned forms above */
.form-submit-btn {
    border-radius: 6px;
}

/* Clears the fixed navbar for pages whose heading sits right at the
   top of the page (no hero banner underneath it) */
.page-heading {
    padding-top: 110px;
}

  .custom-pm-table {
    border-collapse: collapse;
}

/* Headers matching the bold, spaced look in screenshot */
.custom-pm-table thead th {
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    padding-bottom: 20px;
    vertical-align: bottom;
}

/* Row styling */
.custom-pm-table td {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #dee2e6;
    border-top: none;
}

/* Checkmark styling */
.custom-pm-table td.check {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    width: 15%;
}

/* Remove border from the last row */
.custom-pm-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover effect for better UX */
.custom-pm-table tbody tr:hover {
    background-color: #fcfcfc;
}
.accordion-button {
  background: #c52029;
  color: white;
}
/* White accordion arrow */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Keep arrow white when expanded */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
}