/* Custom Styles to supplement Bulma */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #363636;
}

/* LOCK SCREEN STYLES */
#login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Strategic Accent Color: Burnished Gold */
.has-text-accent {
    color: #C5A059 !important;
}

/* Navbar customization */
.navbar.is-custom-light {
    background-color: #f5f5f5; /* Light Grey */
    border-bottom: 1px solid #e0e0e0;
}

.navbar-brand .title {
    padding-left: 1rem;
    color: #000000;
    letter-spacing: 1px;
}

.navbar-item {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: #C5A059 !important; /* Accent color on hover */
    background-color: transparent !important;
}

/* Hero Banner Collage */
.banner-collage {
    display: flex;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-collage img {
    flex: 1;
    height: 100%;
    object-fit: cover;
    /* Optional: add a slight transition or hover effect if desired */
    transition: transform 0.5s ease;
}

.banner-collage img:hover {
    transform: scale(1.05);
}

/* Content Text Styling */
.studio-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #4a4a4a;
}

.section-separator {
    width: 50px;
    height: 3px;
    background-color: #C5A059;
    margin: 2rem auto;
}
