﻿/* Reset and base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Banner Section */
.header-banner {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}
.header-banner img {
    max-width: 100%;
    height: 200px;
    width: 611px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    width: 100%;
    margin: 0;
}

.navbar-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.navbar-buttons a {
    font-weight: bold;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #337ab7;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
}

.navbar-buttons a:hover {
    background-color: #286090;
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0;
    margin-top: 40px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

footer .social-icons a img {
    margin-right: 10px;
    transition: transform 0.3s ease;
}
footer .social-icons a img:hover {
    transform: scale(1.1);
}

footer nav a:hover {
    text-decoration: underline;
    color: #ff4d4d;
}

/* Cards / Blocks (used in dashboards later) */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.card:hover {
    transform: scale(1.02);
}

/* Buttons General */
.btn-custom {
    background-color: #337ab7;
    color: #fff;
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
}
.btn-custom:hover {
    background-color: #286090;
    color: #fff;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .header-banner img {
        width: 100%;
        height: auto;
    }

    .navbar-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .navbar-buttons a {
        width: 100%;
        text-align: center;
    }
}
/* Full height layout with flex */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Keep header and footer natural height */
header, footer {
  flex-shrink: 0;
}

/* Main content container centers form */
.container.section {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  padding: 20px;
  min-height: 60vh;
}

/* Style the form block */
.container.section .block {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 500px;
  width: 100%;
  color: #333;
}

/* Style form inputs consistent with buttons */
.container.section input[type=text], .container.section input[type=email], .container.section textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  resize: vertical;
}

.container.section button {
  background-color: #337ab7;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.container.section button:hover {
  background-color: #286090;
}

