/* =====================================================
   OCMULGEE BREWPUB — Global Styles
   ===================================================== */

/* --- Google Fonts import (Oswald + Poppins) --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* --- Design tokens --- */
:root {
  --color-gold:     #9e7e2f;
  --color-charcoal: #393939;
  --color-white:    #fffffe;
  --color-red:      #de1414;
  --color-blue:     #2184f9;
  --color-black:    #000000;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

/* --- Reset / Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

/* --- Utility: visually hidden --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}
.btn-gold:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

/* --- Section wrapper --- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
