/* Modern MF Room Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;700&family=Noto+Serif:wght@400;700&display=swap');

:root {
    --background-color: #f8f9fa;
    --primary-color: #1a252f;
    --secondary-color: #2980b9;
    --light-color: #dfe6e9;
    --dark-color: #1a252f;
    --text-color: #2d3436;
    --text-light: #636e72;
    --font-main: 'Noto Serif', serif;
    --font-heading: 'Geist', sans-serif;
}

/* Base Reset and Typography */
html {
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 18px;
    color: var(--text-color);
    background-color: var(--background-color)
    font-family: var(--font-main);
}

body {
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem;
  background-color: var(--background-color);
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-main);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin: 0 0 0.5rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    margin: 1rem 0;
    line-height: 1.7;
    color: var(--text-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Lists */
ul, ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

ul li {
    margin: 0.5rem 0;
    padding: 0.3rem 0;
}

ol li {
    margin: 0.5rem 0;
    padding: 0.3rem 0;
    list-style-type: decimal;
}

/* Code blocks */
code {
    background: var(--light-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Horizontal rule */
hr {
    border: none;
    height: 2px;
    background-color: var(--dark-color);
    margin: 2.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}
