/* Wagner Worx Co-Working Bar - Stylesheet */

:root {
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --cream: #f5f0e6;
  --warm-white: #fdfcf9;
  --wood: #8b5a2b;
  --wood-light: #a67c52;
  --text-dark: #2c2c2c;
  --text-light: #666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-light);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  background: #444444;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .wheel {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

.nav-logo .wheel svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.nav-logo span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: auto;
  padding: 2rem 0 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: #222222 !important;
}

section.hero {
  background: #222222 !important;
}

.hero-bg {
  display: none;
}

.hero-content {
  max-width: 800px;
  padding: 1rem 2rem;
}

.hero-content img {
  max-width: 400px;
  width: 90%;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: none;
}

.hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  color: #f5d56e;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--gold);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even):not(.hero) {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

/* Quick Links Grid */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quick-link-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.quick-link-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quick-link-card h3 {
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Hours Widget */
.hours-widget {
  background: var(--navy);
  color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.hours-widget h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 600;
}

.hours-list .closed {
  color: #e74c3c;
}

/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--gold);
}

.event-card .event-date {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.event-card h3 {
  margin-bottom: 0.5rem;
}

.event-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Menu Section */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--navy);
  background: white;
  color: var(--navy);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.menu-tab:hover, .menu-tab.active {
  background: var(--navy);
  color: white;
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.menu-item {
  background: white;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-item-info h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.menu-item-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Membership */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.membership-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.membership-card.featured {
  border: 3px solid var(--gold);
}

.membership-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.membership-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
}

.membership-card .price span {
  font-size: 1rem;
  color: var(--text-light);
}

.membership-card ul {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.membership-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.membership-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-card .pricing {
  background: var(--cream);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.service-card .pricing p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background: var(--navy);
  color: white;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Map */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Storefront Banner (Visit page) */
.storefront-banner {
  padding: 2rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--cream);
}

.storefront-img {
  max-width: 500px;
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .about-preview {
    grid-template-columns: 1fr;
  }

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

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
