
 :root{
    --green:#00A651;
    --blue:#00AEEF;
    --purple:#702C91;
    --orange:#F7941D;
    --dark:#1f2937;
} 

:root{
    --maroon: #560636;
    --red: #EE1B23;
    --green: #03793A;
    --blue: #4B98D2;
    --purple: #822991;
    --gold: #F2A71A;
    --white: #FFFFFF;
    --dark: #211D1E;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(135deg,#eef7ff,#f8fbff);
    display:flex;
    flex-direction:column;
}

/* Soft background shapes */
body::before,
body::after{
    content:"";
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    opacity:.12;
    z-index:-1;
}

body::before{
    width:350px;
    height:350px;
    background:var(--blue);
    top:-120px;
    left:-120px;
}

body::after{
    width:350px;
    height:350px;
    background:var(--purple);
    bottom:-120px;
    right:-120px;
}


.nu-title{
    font-size: 3rem;
    font-weight: 800;
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0px;
}

.maroon{color:var(--maroon);}
.red{color:var(--red);}
.green{color:var(--green);}
.blue{color:var(--blue);}
.purple{color:var(--purple);}
.gold{color:var(--gold);}
.dark{color:var(--dark);}


/* HERO */
.hero{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 15px;
}

.content{
    width:100%;
    max-width:1200px;
    text-align:center;
}

/* LOGO */

.logo{
    width:130px;
    height:130px;
    margin:0 auto 20px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}


.logo a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:150px;
    height:150px;
    background:#fff;
    border-radius:50%;
    padding:12px;
    border:4px solid #ffffff;
    box-shadow:
        0 10px 25px rgba(0,0,0,.15),
        0 0 0 5px rgba(3,121,58,.12);
    transition:all .35s ease;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .35s ease;
}

.logo a:hover{
    transform:translateY(-6px);
    box-shadow:
        0 18px 35px rgba(0,0,0,.22),
        0 0 0 6px rgba(75,152,210,.25);
}

.logo a:hover img{
    transform:scale(1.08) rotate(-3deg);
}

/* TITLE */
h1{
    font-size:clamp(2rem,4vw,3rem);
    color:var(--dark);
    margin-bottom:8px;
}

.subtitle{
    color:var(--blue);
    font-weight:600;
    margin-bottom:30px;
}

/* =========================
   MENU - DESKTOP (SINGLE LINE)
========================= */
.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:nowrap;
    max-width:1400px;
    margin:auto;
}

/* BUTTON */
.menu-btn{
    flex:1;
    min-width:180px;
    max-width:200px;
    height:65px;

    display:flex;
    align-items:center;

    text-decoration:none;
    overflow:hidden;
    border-radius:20px;

    box-shadow:0 8px 18px rgba(0,0,0,.12);
    transition:.25s ease;
}

.menu-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 25px rgba(0,0,0,.18);
}

/* LEFT TEXT */
.menu-text{
    flex:1;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#4494D0;
    color:#fff;

    font-size:.95rem;
    font-weight:700;
    text-align:center;
    padding:0 10px;
}

/* RIGHT ICON */
.menu-icon{
    width:70px;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:1.7rem;
    font-weight:bold;
}

/* =========================
   COLORS
========================= */
.menu-btn:nth-child(1) .menu-icon{ background:var(--green); }
.menu-btn:nth-child(1):hover .menu-icon{ background:#008a44; }

.menu-btn:nth-child(2) .menu-icon{ background:var(--blue); }
.menu-btn:nth-child(2):hover .menu-icon{ background:#008ec5; }

.menu-btn:nth-child(3) .menu-icon{ background:var(--purple); }
.menu-btn:nth-child(3):hover .menu-icon{ background:#5a2375; }

.menu-btn:nth-child(4) .menu-icon{ background:var(--orange); }
.menu-btn:nth-child(4):hover .menu-icon{ background:#d97e0b; }

.menu-btn:nth-child(5) .menu-icon{ background:var(--green); }
.menu-btn:nth-child(5):hover .menu-icon{ background:#008a44; }

.menu-btn:nth-child(6) .menu-icon{
    background:linear-gradient(135deg,var(--green),var(--blue));
}
.menu-btn:nth-child(6):hover .menu-icon{
    background:linear-gradient(135deg,#008a44,#008ec5);
}

/* =========================
   TABLET
========================= */
@media(max-width:1200px){

    .menu{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        max-width:800px;
    }

    .menu-btn{
        max-width:none;
        width:100%;
    }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .menu{
        grid-template-columns:1fr;
        max-width:420px;
    }

    .menu-btn{
        height:60px;
    }

    .menu-text{
        font-size:.9rem;
    }

    .menu-icon{
        width:65px;
        font-size:1.5rem;
    }
     .nu-title {
        font-size: clamp(22px, 5vw, 38px);
        letter-spacing: 0.5px;
        padding: 8px 10px;
    }
}
 
@media (max-width: 480px) {
    .nu-title {
        font-size: clamp(19px, 6vw, 28px);
        line-height: 1.35;
        letter-spacing: 0;
        padding: 5px;
    }
}

/* FOOTER */
footer{
    text-align:center;
    padding:18px;
    color:#64748b;
    font-size:.9rem;
}