/* ===== GLOBAL ===== */
body {
  background: linear-gradient(120deg, #0F4C4C, #1E88C7, #F4C542);
  font-family: Arial, sans-serif;
  color: white; 
}

.brand-name {
  color: #EAE6D8;
  font-size: 48px;
  font-weight: bold;
}

.tagline {
  color: #F2C94C;
  font-size: 18px;
  letter-spacing: 2px;
}

.accent {
  color: #F4C542;
}

h1,h2,h3{
    font-family:'Poppins', sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== NAVBAR ===== */
header{
    background:#fff;
    padding:15px 0;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo img {
  height: 50px;   /* control size */
  width: auto;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:20px;
    font-weight:500;
}

nav a:hover{
    color:#0B3CFF;
}

/* ===== HERO ===== */
.hero{
    /*background:linear-gradient(120deg,#0F4C4C,#1E88C7);*/
	/*background: linear-gradient(120deg, #0F4C4C, #1E88C7, #F4C542),url("images/nbaix logo.jpg");*/
    /*background-blend-mode: overlay;*/
    color:white;
    padding:100px 0;
    text-align:center;
}

.btn{
    background:white;
    color:#0B3CFF;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    display:inline-block;
    margin-top:20px;
}

/* ===== SECTIONS ===== */
.section{
    padding:80px 0;
    text-align:center;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.card{
    border:1px solid #eee;
    border-radius:10px;
    padding:30px;
    width:260px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

/* ===== FOOTER ===== */
footer{
    background:none;
    color:white;
    text-align:center;
    padding:40px 0;
    margin-top:40px;
}

input, textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:6px;
}

button{
    background:#0B3CFF;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:6px;
}
