/*
Theme Name: My Custom Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A minimal custom WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/

:root{
	    --bg:#0a0a0a;
    --panel:#111111;
    --red:#A31D1D;
    --gold:#d4af37;
    --muted:#9a9a9a;
    --glass: rgba(255,255,255,0.03);
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}
a {
    color: #0073aa;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ===========================
   PREMIUM 4-COLUMN FOOTER
   =========================== */

.site-footer {
  margin-top: 60px;
  background: linear-gradient(180deg, #0b0b0b, #090909);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 24px 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Brand column */
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #8b1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 8px 26px rgba(163, 29, 29, 0.25);
}

.footer-desc {
  max-width: 260px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

/* Labels in contact */
.footer-label {
  color: var(--gold);
  font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-logo {
    width: 54px;
    height: 54px;
  }
  .site-footer {
    padding: 40px 20px 30px;
  }
}

