/* ===============================
   Color Variables
   =============================== */
:root {
  --dark-green: #00593c;
  --gold: #d4bf73;
  --gold-dark: #c4a840;
  --gold-light: rgba(212, 191, 115, 0.1);
  --white: #ffffff;
  --black: #000000;
}

/* ===============================
   Global Reset & Base
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--black);
  height: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

/* ===============================
   Footer Styles
   =============================== */
/* ===== Footer styles (move to your CSS file) ===== */
.site-footer {
  --bg: #0b3d2e; /* dark green */
  --fg: #ffffff; /* white */
  --muted: #c8d3cd; /* light text */
  --accent: #d4af37; /* gold */
  background: var(--bg);
  color: var(--fg);
}

.site-footer a {
  color: var(--fg);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 48px 24px;
  display: grid;
  gap: 32px;
}

.footer-top {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.footer-col .footer-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover, .footer-links a:focus-visible {
  color: var(--fg);
  text-decoration: underline;
}

.footer-brand img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.15));
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.dev-com {
  text-align: center;
  padding-bottom: 2rem;
}

.socials {
  display: flex;
  gap: 16px;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: .2s ease;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: var(--fg);
}

/* Accessibility: keyboard focus */
.site-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

.developer-signature span {
  font-weight: bold;
  color: #d4bf73; /* your signature gold */
  letter-spacing: 0.5px;
}

.developer-signature span:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* ===============================
   Floating Buttons
   =============================== */
.floating-menu {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 1rem;
}


.main-btn {
  background-color: var(--gold);
  color: var(--dark-green);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  border: 2px solid var(--dark-green);
  box-shadow: 0 0 8px var(--gold);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.action-buttons.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.action-btn {
  background-color: var(--dark-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
}

.action-btn::after {
  content: attr(title);
  position: absolute;
  right: 110%;
  opacity: 0;
  background-color: var(--black);
  color: var(--white);
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  transform: translateY(-50%);
  top: 50%;
  transition: opacity 0.3s;
}

@media (min-width: 2500px) {
  .main-btn {
    height: 80px;
    width: 80px;
    font-size: 2rem;
  }

  .action-btn {
    height: 80px;
    width: 80px;
    font-size: 2rem;

  }
}

.action-btn:hover::after {
  opacity: 1;
}

.main-btn.rotate {
  transform: rotate(45deg);
}

.action-buttons.show .action-btn {
  opacity: 0;
  transform: translateY(10px);
  animation: slideIn 0.4s ease forwards;
}

.action-buttons.show .action-btn:nth-child(1) {
  animation-delay: 0.05s;
}

.action-buttons.show .action-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.action-buttons.show .action-btn:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

