:root {
    --header-transparent-white: white;
    --header-transparent-white-transparent: rgba(255, 255, 255, 0.5);
    --header-transparent-white-bg-transparent: rgba(255, 255, 255, 0.95);
    --header-transparent-black-shadow-heavy: rgba(0, 0, 0, 0.25);
    --header-transparent-black-shadow-light: rgba(0, 0, 0, 0.1);
    --header-transparent-black-transparent: rgba(0, 0, 0, 0.2);
    --header-transparent-black-icon: rgba(0, 0, 0, 0.55);
    --header-transparent-transparent: transparent;
}

/* Transparent Header Overlay */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-transparent-transparent) !important;
    z-index: 1030;
    transition: background-color 0.3s ease;
}

.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--header-transparent-black-shadow-heavy);
}

.navbar-toggler {
    border-color: var(--header-transparent-white-transparent);
    transition: border-color 0.3s ease;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: background-image 0.3s ease;
}

/* Solid background when scrolled */
.navbar.scrolled {
    background: var(--header-transparent-white-bg-transparent) !important;
    box-shadow: 0 2px 10px var(--header-transparent-black-shadow-light);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--app-primary-color) !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--header-transparent-black-transparent);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */

.hero-section {
    /* The background image used to be here, is moved to page and transparrent header component */

    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    position: relative;
}

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

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
