/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; }
.container { width: 90%; max-width: 1000px; margin: 0 auto; }

/* Navbar */
nav { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
nav .container { display: flex; justify-content: space-between; align-items: center; padding: 1em 0; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 1em; }
.nav-links a { text-decoration: none; color: #333; }
.logo { font-family: 'Playfair Display', serif; color: #b76327; text-decoration: none; font-size: 1.5em; font-weight: bold; }

/* Hero */
#hero { position: relative; text-align: center; color: #fff; }
#hero img { width: 100%; display: block; }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.btn { background: #b76327; color: #fff; padding: 0.5em 1em; text-decoration: none; border-radius: 4px; margin-top:10px;}
.hero-tagline { display: inline-block; background: rgba(0, 0, 0, 0.5); color: #fff; padding: 0.5em 1em; border-radius: 4px; margin: 0.5em 0; }

/* Sections */
section { padding: 2em 0; }
section img { width: 100%; border-radius: 8px; margin: 1em 0; }

/* Accordion */
.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-header { padding: 1em; cursor: pointer; background: #f9f9f9; }
.accordion-content { padding: 1em; display: none; }

/* Footer */
footer { text-align: center; padding: 1em 0; font-size: 0.9em; color: #777; }
