:root {
    --brand-dark: #1a2332;
    --brand-yellow: #fecf07;
    --brand-blue: #2563eb;
    --brand-blue-dark: #050C39;
    --brand-blue-light: #3b82f6;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use Montserrat for headings and UI elements, Open Sans for readability */
body {
    font-family:  'Montserrat', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F2F2F2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: var(--brand-dark);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

.site-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 50px;
    width: auto;
}

.site-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  white-space: nowrap;
}

.account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #fff;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.account-btn:hover {
  background: #444;
}
.account-btn svg {
  display: block;
}

/* Main Content */
.site-main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Footer Styles */
.site-footer {
    background-color: #1a472a;
    color: white;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b8d4c4;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-description {
    color: #b8d4c4;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: white;
    color: #1a472a;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.contact-info {
    color: #b8d4c4;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom a {
    color: #b8d4c4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

.separator {
    color: #b8d4c4;
}

/* Messages */
.messages {
    list-style: none;
    margin: 1rem 0;
}

.message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border-left: 4px solid;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.message.success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.message.warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.message.info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
