/*
  Basic reset or base styling can go here.
  Keep it clean, fluid, and professional.
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    height: 60vh;
    position: relative;
}

.hero::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero .container {
    z-index: 2;
}

/* Page Headers (like the ones in About, Services, Gallery, Contact) */
header.bg-light {
    background-color: #f8f9fa !important;
}

/* Footer */
footer {
    margin-top: auto;
    text-align: center;
}

/* Forms */
form label {
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero {
        height: 40vh;
    }
}
