/* styles.css */

/* --- General & Theme --- */
body {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Modern, clean font */
    padding-top: 70px; /* Adjust if navbar height changes */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Allows footer to stick to bottom */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300; /* Lighter font weight for headings, similar to example */
}

.section-title {
    font-weight: 500; /* Slightly bolder for section titles */
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

a {
    color: #cccccc; /* Lighter gray for links */
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

.text-primary { /* Bootstrap primary override if needed, or use for specific accents */
    color: #0d6efd !important; /* Default BS blue, or choose your accent */
}


/* --- Navbar --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent black */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.navbar-brand {
    font-weight: 500;
    font-size: 1.5rem;
}

.nav-link {
    color: #ccc !important;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

/* --- Buttons --- */
.btn-pill {
    border-radius: 50px; /* Pill shape for buttons */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn-outline-light {
    border-color: #aaa;
    color: #aaa;
}
.btn-outline-light:hover {
    border-color: #fff;
    color: #000; /* Black text on white hover for contrast */
    background-color: #fff;
}

/* --- Footer --- */
.footer {
    background-color: #0a0a0a; /* Slightly lighter black for footer */
    color: #777;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer .text-light {
    color: #aaa !important;
    transition: color 0.3s ease;
}
.footer .text-light:hover {
    color: #fff !important;
}

.footer .social-icons a {
    transition: color 0.3s ease;
}

.footer .text-muted {
    color: #666 !important;
}


/* --- Page Specific --- */

/* index.html - Hero Section */
#hero {
    min-height: calc(100vh - 70px); /* Full viewport height minus navbar */
    background: url('/assets/images/hero\ background.jpg') no-repeat center center; /* Replace with your hero image */
    background-size: cover;
    position: relative;
}
#hero::before { /* Optional: dark overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}
#hero .container {
    position: relative; /* To ensure content is above the overlay */
    z-index: 2;
}
#hero h1 {
    font-size: 3.5rem;
    font-weight: 700; /* Bolder for main hero title */
    margin-bottom: 1rem;
}
#hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}


/* index.html - About Me Section */
#about .profile-image {
    max-width: 350px; /* Control size of profile image */
    border: 5px solid #333; /* Subtle border like example */
}

/* index.html - Showcase & General Images */
.rounded-image {
    border-radius: 15px; /* Rounded corners like example image */
    object-fit: cover; /* Ensure images fill their containers nicely */
    /* Consider adding a subtle box-shadow if desired */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
}

/* pictures.html - Client Cards */
.page-content { /* To add padding below fixed navbar */
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.client-card {
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(200, 200, 200, 0.1);
}
.client-card img {
    border-bottom: 1px solid #333;
    aspect-ratio: 3 / 2; /* Maintain a consistent aspect ratio for card images */
    object-fit: cover;
}

/* contact.html */
#contact-info .contact-item i {
    color: #007bff !important; /* Using Bootstrap primary, can be changed */
}

/* client-galleries/pictures-CLIENTNAME_TEMPLATE.html - Client Hero */
.client-hero {
    height: 60vh; /* Adjust as needed */
    max-height: 800px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -70px; /* Pull up to account for navbar padding on body */
}
.client-hero::before { /* Dark overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
}
.client-hero .container {
    position: relative;
    z-index: 2;
}
.client-hero h1 {
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}


/* client-galleries/pictures-CLIENTNAME_TEMPLATE.html - Masonry Gallery */
.client-gallery-masonry .row > * { /* Bootstrap 5 gutter fix for Masonry */
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}
.client-gallery-masonry img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.client-gallery-masonry img:hover {
    opacity: 0.8;
}

/* Lightbox Modal */
#lightboxModal .modal-content {
    background-color: rgba(0,0,0,0.85); /* Darker, more immersive modal background */
}
#lightboxModal img {
    max-height: 90vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
}
#lightboxModal .btn-close-white {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 1.5rem; /* Make close button a bit bigger */
}
#lightboxModal .btn-close-white:hover {
    opacity: 1;
}
#lightboxModal .btn-outline-light { /* Navigation buttons */
    background-color: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lightboxModal .btn-outline-light:hover {
    background-color: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.5);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #hero h1 {
        font-size: 2.8rem;
    }
    #hero .lead {
        font-size: 1.25rem;
    }
    .client-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 60px; /* Adjust for smaller navbar if its height changes */
    }
    #hero {
        min-height: calc(100vh - 60px);
    }
    #hero h1 {
        font-size: 2.2rem;
    }
    #hero .lead {
        font-size: 1.1rem;
    }
    #about .profile-image {
        margin-top: 2rem;
    }
    .client-hero {
        margin-top: -60px;
        height: 40vh;
    }
     .client-hero h1 {
        font-size: 1.8rem;
    }
}