
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary-color: #5a2d22; /* Roman red/brown */
  --secondary-color: #2f2f2f; /* Dark stone */
  --bg-color: #f5f5f2; /* Light stone */
  --accent-color: #bfa76f; /* Bronze/gold */
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: var(--bg-color);
  color: var(--secondary-color);
}

header {
  background: var(--secondary-color);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
}

.hero {
  height: 70vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: url('banner.png') no-repeat center center;
  background-size: cover; /* Scales image to cover the container */
  color: black;
  text-align: center;
}

.hero h2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

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

.card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 1rem;
  background: var(--secondary-color);
  color: white;
  margin-top: 2rem;
}


/* Responsive enhancements */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.container, .content, .wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

/* General responsive layout tweaks */
@media (max-width: 768px) {
    body {
        font-size: 90%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .container, .content {
        padding: 0 10px;
    }
}
