/* Navbar Styling */
.navbar {
    background-color: var(--primary-dark-bg) !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-family: 'Special Elite', cursive;
    color: var(--light-text) !important;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-green) !important;
}

.navbar-nav .nav-link {
    font-family: 'Special Elite', cursive;
    color: var(--light-text) !important;
    margin-left: 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Practice More Section */
.practice-section {
    padding: 80px 15px;
    background-color: var(--light-bg-body);
    flex-grow: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    text-align: center;
}

.practice-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background-color: var(--card-bg);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none; /* Remove underline for links */
    color: inherit; /* Inherit text color */
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.practice-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.practice-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}
.practice-card .icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}
.practice-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.practice-card.disabled:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* No change on hover if disabled */
}

/* Footer Styling */
.footer {
    background-color: var(--primary-dark-bg);
    color: var(--light-text);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    margin-top: auto;
}

.footer p {
    margin-bottom: 5px;
}

.footer .social-icons a {
    color: var(--light-text);
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--accent-green);
}

/* Responsive Adjustments */
@media (min-width: 992px) { /* Adjust hero margin for desktop navbar */
    body {
        padding-top: 0;
    }
    .practice-section {
        padding-top: 100px; /* More padding at top for fixed nav */
        padding-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .practice-section {
        padding: 60px 15px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .practice-section {
        padding: 40px 10px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .practice-card {
        padding: 20px;
    }
}
@media (max-width: 350px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
}