@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --dark-bg: #0d1117;
    --light-text: #f0f0f0;
    --accent: #8892b0;
    --gov-dark: #0d1b2a;
    --gov-navy: #1b263b;
    --gov-light: #e0e5eb;
    --gov-gold: #d4af37;
    --gov-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--gov-navy);
    color: var(--light-text);
    scroll-behavior: smooth;
}

.nath {
    position: fixed;
    top: 0;
    margin-left: 15px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
    z-index: 9999;
}

.nath:hover {
    color: green;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, var(--gov-navy), var(--dark-bg));
    padding: 10px 0;
    border-radius: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navy{
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    gap: 30px;
    display: flex;
}

.navy a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navy a:hover {
    color: green;
}

.buttons {
    display: flex;
    gap: 10px;
}

.portal {
    position: fixed;
    top: 10px;
    right: 10px;
    margin-top: 0px;
    background-color: var(--dark-bg);
    border-radius: 20px;
    z-index: 1001;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: white;
    color: var(--dark-bg);
}

.btns {
    background: white;
    border-radius: 20px;
    color: var(--dark-bg);
    font-weight: bold;
    cursor: pointer;
    border: 2px sold white;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.btns:hover {
  background: var(--dark-bg);
  color: white;
  border: 2px solid white;
}

footer {
    background: #111;
    text-align: center;
    padding: 1.5rem 0;
    color: var(--muted);
    font-size: 0.9rem;
    align-content: center;
}

footer strong {
    text-decoration: underline;
}

.follow {
    display: flex;
    justify-content: space-between;
    padding: 40px;
}

.follow button {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.follow button:hover {
    font-size: 20px;
    color: green;
}

.follow button i {
    color: #fff;
}

.follow button i:hover {
  color: green;
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    text-decoration: none;
    text-align: center;
}

.footer-links li a:hover {
  font-weight: bold;
  color: green;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    color: #fff;
    padding: 18px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
    opacity: 1;
    transition: opacity 0.5s ease;
    font-family: "Inter", sans-serif;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.4;
}

.cookie-content a {
    color: #3ea6ff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
}

/* Global message styles for Django messages framework */
.global-messages {
    max-width:1100px;
    margin:12px auto;
    padding:0 16px;
}

.global-messages .message {
    padding:10px 12px;
    border-radius:6px;
    margin-bottom:8px;
}

.global-messages .message.error {
    background:#fee2e2;
    color:#991b1b;
}

.global-messages .message.success {
    background:#dcfce7;
    color:#064e3b;
}

.global-messages .message.info {
    background:#e6f0ff;
    color:#0b3d91;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.cookie-btn.accept {
    background: #3ea6ff;
    color: #fff;
}

.cookie-btn.decline {
    background: #222;
    color: #ddd;
}
