/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 7rem 1rem;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

/* Faint logo watermark */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/danielondefense-logo-circle.png");
    background-position: center center;
    background-size: 580px;
    background-repeat: no-repeat;

    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

/* Keeps text and buttons above the logo */
.hero > * {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    color: var(--text-cream);
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Services Preview Section */
.services {
    padding: 4rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-blue);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    align-self: flex-start;
}

.card-link:hover {
    text-decoration: underline;
}

