/* ==========================================================
   Brilliance Solutions Website Styles
   Colors: Blue, Maroon, Khaki
   ========================================================== */
:root {
  --blue: #0f5b7a;
  --maroon: #7a1f2f;
  --khaki: #c9b581;
  --white: #fff;
  --muted: #f5f5f5;
  --radius: 12px;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Inter", sans-serif;
  background-color: #0b3b48;
  color: var(--white);
  scroll-behavior: smooth;
}

/* -------------------- HEADER -------------------- */
.site-header {
  background: rgba(15, 91, 122, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
}

.logo {
  height: 60px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--khaki);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--maroon);
}

.mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--khaki);
  font-size: 1.5rem;
  cursor: pointer;
}

/* -------------------- HERO -------------------- */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--blue), #0b3b48);
  position: relative;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--khaki);
  font-size: 3rem;
}

.lead {
  font-size: 1.2rem;
  color: #eee;
  margin: 20px 0;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--maroon);
  color: var(--white);
}

.btn.primary:hover {
  background: #a62b45;
}

.btn.outline {
  border: 2px solid var(--khaki);
  color: var(--khaki);
  background: transparent;
}

.btn.outline:hover {
  background: var(--khaki);
  color: var(--blue);
}

/* Timber floating animation */
.timber-scene {
  position: relative;
  width: 340px;
  height: 300px;
}

.timber {
  position: absolute;
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0.9;
  animation: float 8s ease-in-out infinite alternate;
}

.t1 {
  width: 200px;
  left: 10%;
  top: 10%;
}

.t2 {
  width: 150px;
  left: 60%;
  top: 20%;
  animation-delay: 2s;
}

.t3 {
  width: 180px;
  left: 35%;
  top: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* -------------------- SECTIONS -------------------- */
.section {
  padding: 80px 20px;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: var(--khaki);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-lead {
  text-align: center;
  color: #ddd;
  margin-bottom: 40px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card:hover {
  transform: scale(1.05);
}

/* -------------------- CONTACT -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-form button {
  margin-top: 10px;
}

/* -------------------- FOOTER -------------------- */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #092f3a;
  color: var(--khaki);
}

/* -------------------- WHATSAPP BUTTON -------------------- */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.wa-btn {
  background: var(--khaki);
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 25px;
  color: #063;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.wa-menu {
  display: none;
  flex-direction: column;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.wa-menu a {
  padding: 10px 14px;
  text-decoration: none;
  color: #063;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.wa-menu a:last-child {
  border-bottom: none;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: rgba(15, 91, 122, 0.95);
    position: absolute;
    right: 10px;
    top: 80px;
    border-radius: 8px;
    padding: 15px;
  }

  .main-nav.show {
    display: flex;
  }

  .mobile-btn {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Footer Styling
   ============================== */
.site-footer {
  background: var(--blue);
  color: #f2f2f2;
  padding: 50px 0 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo-area img.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-logo-area p {
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
}

/* Links */
.footer-links h3,
.footer-contact h3 {
  font-family: 'Playfair Display', serif;
  color: var(--khaki);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--khaki);
  padding-left: 5px;
}

/* Contact Section */
.footer-contact p {
  font-size: 14px;
  margin: 6px 0;
  color: #e6e6e6;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--khaki);
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--khaki);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--khaki);
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--khaki);
  color: var(--blue);
}

/* Bottom Strip */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #e6e6e6;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social a {
    margin: 5px;
  }
}
invoice.html → invoice.php
quote.html → quote.php

