/* ===================================================
   ANGUS BUTCHERY — STYLE.CSS
   ---------------------------------------------------
   📍 Project: Angus Butchery
   🧱 Version: 1.1
   🎨 Branding: Earthy butcher tones | Red | Yellow | Black
   💼 Developed by: Arcta Studio
   📅 Updated: 22 July 2025
   🔐 Responsive, Mobile-First, SPW-Compatible
   =================================================== */

/* ---------------------------------------------------
   1. ROOT VARIABLES
   --------------------------------------------------- */
:root {
  --angus-red: #d81f1f;
  --angus-yellow: #ffd700;
  --angus-black: #0a0a0a;
  --angus-white: #ffffff;
  --font-headings: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: all 0.3s ease-in-out;
}

/* ---------------------------------------------------
   2. BASE ELEMENTS
   --------------------------------------------------- */
body {
  background-color: var(--angus-black);
  color: var(--angus-white);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-headings);
  color: var(--angus-red);
  letter-spacing: 1px;
}

a {
  color: var(--angus-yellow);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--angus-white);
}

/* ---------------------------------------------------
   3. UTILITY CLASSES
   --------------------------------------------------- */
.section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.container {
  width: 90%;
  margin: 0 auto;
}

.button-primary {
  background-color: var(--angus-red);
  color: var(--angus-white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-headings);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.button-primary:hover {
  background-color: var(--angus-yellow);
  color: var(--angus-black);
}


/* ---------------------------------------------------
   5. ABOUT / SERVICES / CONTACT / FORMS
   --------------------------------------------------- */
.section-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--angus-red);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--angus-yellow);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}
.service-card:hover {
  border-color: var(--angus-yellow);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}
.service-card h3 {
  color: var(--angus-yellow);
  margin-bottom: 1rem;
  font-family: var(--font-headings);
}
.service-card p {
  color: var(--angus-white);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-details,
.contact-map {
  flex: 1 1 350px;
}
.contact-details h3 {
  color: var(--angus-yellow);
  margin-bottom: 1rem;
}
.contact-details p,
.contact-details a {
  color: var(--angus-white);
  font-size: 1rem;
  margin: 0.5rem 0;
}
.social-links a {
  display: inline-block;
  margin-right: 1rem;
  color: var(--angus-yellow);
  font-weight: bold;
}

.contact-form {
  background-color: rgba(255,255,255,0.03);
  padding: 2rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  background: #111;
  border: 1px solid #444;
  color: var(--angus-white);
  border-radius: 4px;
  font-family: var(--font-body);
}
.contact-form h3 {
  color: var(--angus-red);
  margin-bottom: 1rem;
}

/* ---------------------------------------------------
   6. PRODUCTS PLACEHOLDER
   --------------------------------------------------- */
.product-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: linear-gradient(to bottom, #0a0a0a, #111);
}
.product-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
  animation: sweepPulse 6s ease-in-out infinite;
}
.product-logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  animation: floatY 4s ease-in-out infinite;
}
.product-title {
  color: var(--angus-yellow);
  font-size: 2rem;
  font-family: var(--font-headings);
  margin-bottom: 1rem;
}
.product-message {
  font-size: 1rem;
  color: var(--angus-white);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------
   7. UNDER CONSTRUCTION PANEL
   --------------------------------------------------- */
.construction-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(to bottom, #0a0a0a, #111);
  text-align: center;
}
.construction-container {
  max-width: 600px;
  width: 90%;
  padding: 2rem;
}
.glass-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 3rem 2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.05);
  animation: sweepPulse 6s ease-in-out infinite;
}
.logo-spinner {
  perspective: 1200px;
  margin-bottom: 2rem;
}
.construction-logo {
  width: 180px;
  height: auto;
  animation: rotateYLogo 4s infinite ease-in-out;
  transform-style: preserve-3d;
}
@keyframes rotateYLogo {
  0% { transform: rotateY(0deg); }
  25% { transform: rotateY(45deg); }
  50% { transform: rotateY(0deg); }
  75% { transform: rotateY(-45deg); }
  100% { transform: rotateY(0deg); }
}
.construction-title {
  color: var(--angus-yellow);
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.construction-message {
  color: var(--angus-white);
  font-size: 1rem;
  opacity: 0.9;
}

/* ---------------------------------------------------
   8. FOOTER
   --------------------------------------------------- */
.site-footer {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--angus-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -6px 18px rgba(255, 215, 0, 0.04);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links {
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--angus-yellow);
  margin: 0 0.75rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer-links a:hover {
  color: var(--angus-white);
}
.footer-note p {
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------------------------
   9. ANIMATIONS
   --------------------------------------------------- */
@keyframes sweepPulse {
  0%, 100% {
    box-shadow: 0 0 32px rgba(255, 215, 0, 0.08);
  }
  50% {
    box-shadow: 0 0 64px rgba(255, 215, 0, 0.2);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------
   10. MEDIA QUERIES
   --------------------------------------------------- */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 3rem 1rem; }
  .hero-container { padding: 2rem 1rem; }
}
