/* Custom CSS for Foggy Bottom Inn - Materialize-based Design */

:root {
  --primary-brown: #5D4037;
  --primary-brown-light: #8D6E63;
  --primary-brown-dark: #3E2723;
  --accent-tan: #D7CCC8;
  --text-dark: #212121;
  --text-medium: #757575;
}

/* Typography */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-brown-dark);
  border-bottom: 3px solid var(--primary-brown);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-brown);
  margin-top: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-brown-light);
}

/* Navigation customization */
nav.brown.darken-4 {
  background-color: var(--primary-brown-dark) !important;
}

.brand-logo {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
}

/* Main content spacing */
.main-content {
  min-height: 60vh;
  padding: 3rem 0;
}

/* Enhance readability */
.main-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.main-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.main-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Images */
.main-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

/* Links */
.main-content a {
  color: var(--primary-brown);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.main-content a:hover {
  color: var(--primary-brown-light);
}

/* Cards and sections */
.card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer styling */
.page-footer {
  padding-top: 2rem;
}

.page-footer h5 {
  font-family: 'Playfair Display', serif;
}

/* Responsive adjustments */
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .brand-logo {
    font-size: 1.5rem !important;
  }
}

@media only screen and (max-width: 600px) {
  .main-content {
    padding: 1.5rem 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Special styling for lists with strong tags */
.main-content ul li strong {
  color: var(--primary-brown-dark);
  font-weight: 500;
}

/* Tabs customization */
.tabs .tab a {
  color: rgba(255,255,255,0.7);
}

.tabs .tab a:hover,
.tabs .tab a.active {
  color: #fff;
}

.tabs .indicator {
  background-color: var(--accent-tan);
}

/* Button enhancements */
.btn.brown.lighten-1 {
  background-color: var(--primary-brown-light) !important;
}

.btn.brown.lighten-1:hover {
  background-color: var(--primary-brown) !important;
}
