/* ===== GLOBAL ===== */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ===== HERO ===== */
.hero-box {
    position: relative;
    max-width: 1000px;
    height: 420px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;

    background-image: url("https://www.nuttynovas.co.uk/images/nova.png");
    background-size: cover;
    background-position: center;

    /* START SHARP */
    filter: blur(px);
    transform: scale(1.02);

    transition: filter 0.5s ease, transform 0.5s ease;
}

/* SUBTLE BLUR ON HOVER */
.hero-box:hover {
    filter: blur(2px);   /* much softer */
    transform: scale(1.03);
}

.hero-box:hover {
    filter: blur(0);
    transform: scale(1.02);
}

.hero-text {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #02DEE0;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #02DEE0;
    color: #000;
}

/* ===== QUICK LINKS ===== */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-links a {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    transition: 0.3s;
    border: 4px solid #000;
}

.quick-links a:hover {
    transform: translateY(-5px);
    background: rgba(0,0,0,0.7);
}

/* ===== FEATURED ===== */
.featured {
    text-align: center;
}

.featured img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.featured img:hover {
    transform: scale(1.03);
}

/* ===== INFO SECTION ===== */
.info {
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

/* ===== CTA ===== */
.cta {
    text-align: center;
}

.cta .btn {
    margin-top: 15px;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* QUICK LINKS BASE */
.quick-links a {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #f5c227;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    transition: 0.3s;
    overflow: hidden;
}

/* HOVER LIFT */
.quick-links a:hover {
    transform: translateY(-5px);
    /*background: rgba(0,0,0,0.7);*/
    background: #02DEE0;
    color: #000000;
}

/* UNDERLINE EFFECT */
.quick-links a::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #f5c227;

    transition: 0.3s ease;
    transform: translateX(-50%);
}

/* ON HOVER - EXPAND LINE */
.quick-links a:hover::after {
    width: 60%;
}