﻿/* Full hero area with subtle gradient */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(150deg, #e9f5f7 0%, #ffffff 100%);
    padding-top: 100px;
}

/* Container around the logo */
.logo-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .logo-container:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

/* Logo image */
.hero-logo {
    max-width: 360px;
    height: auto;
    display: block;
}

/* Optional: soft glow effect */
.shadow-layer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: radial-gradient(circle at 50% 0%, #7dd0d6 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

/* Navbar glass style */
.navbar-glass {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Slight text and hover enhancements */
.navbar-brand {
    font-weight: 600;
    color: #063647 !important;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

    .navbar-brand:hover {
        color: #0baaae !important;
    }

.navbar-nav .nav-link {
    color: #063647 !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .navbar-nav .nav-link:hover {
        color: #0baaae !important;
        transform: translateY(-2px);
    }

/* Logo size inside navbar */
.nav-logo {
    height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Optional drop shadow when scrolling */
.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section {
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

    .section h2 {
        color: #063647;
    }

    .section p {
        line-height: 1.8;
        color: #333;
        font-size: 1.05rem;
    }
