/* ===== BODY ===== */
body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0fdf4;
    color: #333;
}


/* ===== HEADER ===== */
header {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 18px 10px;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}


/* ===== NAVBAR ===== */
nav {
    background-color: #111827;
    text-align: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #60a5fa;
    border-radius: 6px;
}
/* PROFILE IMAGE */
.profile-img img {
    width: 200px;        /* 🔥 control size here */
    height: 200px;       /* keep same as width for circle */
    object-fit: cover;   /* keeps image properly cropped */
    border-radius: 50%;  /* makes it circular */
    border: 4px solid #1e3a8a;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* ===== PROFILE LAYOUT (CENTERED) ===== */
.profile {
    display: flex;
    flex-direction: column;   /* stack image + text vertically */
    align-items: center;      /* center horizontally */
    text-align: center;       /* center text */
}

/* space below image */
.profile-img {
    margin-bottom: 20px;
}

/* control text width */
.profile-text {
    max-width: 700px;
}
/* ===== MAIN CONTENT ===== */
.container {
    max-width: 900px;
    width: 92%;
    margin: 60px auto;
    padding: 45px;

   background: #fff9db;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    text-align: left;
    line-height: 1.8;
}

.container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
}


/* ===== FOOTER ===== */
footer {
    text-align: center;
    background: #020617;
    color: white;
    padding: 15px;
    margin-top: 40px;
}


/* ===== VISITOR COUNTER ===== */
.visitor {
    margin-top: 8px;
    font-size: 14px;
    color: #cbd5f5;
}

#stats {
    font-weight: bold;
    color: #60a5fa;
}
