/* Global */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #E8F2EF; /* Light sage */
    color: #222;
    line-height: 1.6;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0F5E4D; /* Emerald */
}

/* Header */
.header {
    background: #0F5E4D; /* Emerald */
    padding: 15px 40px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Hero */
.hero {
    position: relative;
    background: url('assets/img/hero.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 94, 77, 0.7); /* Emerald overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.btn {
    background: #D4A017; /* Gold */
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Sections */
.section {
    padding: 70px 40px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Practice Areas */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #0F5E4D; /* Emerald */
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.card:hover {
    background: #D4A017; /* Gold */
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Contact */
.contact {
    text-align: center;
}

/* Footer */
.footer {
    background: #0F5E4D; /* Emerald */
    color: #fff;
    text-align: center;
    padding: 20px;
}
