/* Global Styles */
:root {
  --color-cream: #f5ede0;
  --color-milk: #faf8f5;
  --color-sand: #e8dcc8;
  --color-sky: #d4e0e8;
  --color-navy: #1a3a52;
  --color-gold: #c9a876;
  --color-teal: #7fa9a8;
  --color-text: #2d2d2d;
  --color-light-text: #5a5a5a;
  --color-border: #e0d5c7;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  background-color: var(--color-milk);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Lucida Grande', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  line-height: 1.8;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}

/* Header Styles */
.site-header {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--color-gold);
}

/* Navigation */
.main-nav {
  flex-grow: 1;
  margin-left: 2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--color-gold);
  border-bottom: none;
}

.nav-link.active {
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-navy);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.5) 0%, rgba(200, 168, 118, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
  width: 90%;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-gold);
  color: var(--color-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-gold);
}

.cta-button:hover {
  background-color: var(--color-cream);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.cta-button.secondary {
  background-color: transparent;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
}

.cta-button.secondary:hover {
  background-color: var(--color-navy);
  color: white;
}

/* Page Header */
.page-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.page-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 58, 82, 0.6), rgba(26, 58, 82, 0.4));
  z-index: 1;
}

.page-header-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 20px;
  z-index: 2;
  color: white;
}

.page-header-content h1 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.page-header-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--color-sand);
  padding: 0.75rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--color-navy);
}

/* Footer */
.site-footer {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-section h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-teal);
  padding-bottom: 0.5rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
}

/* Main Content */
.page-main {
  min-height: calc(100vh - 200px);
}

/* Sections */
.section-title {
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

/* Lists */
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

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

/* Forms */
.contact-form {
  background-color: var(--color-cream);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
  font-weight: 500;
  font-family: 'Trebuchet MS', sans-serif;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  background-color: white;
  color: var(--color-text);
  font-family: 'Georgia', serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group.checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 0.95rem;
}

.submit-button {
  background-color: var(--color-navy);
  color: white;
  padding: 12px 32px;
  border: 1px solid var(--color-navy);
  cursor: pointer;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th, td {
  border: 1px solid var(--color-border);
  padding: 1rem;
  text-align: left;
}

th {
  background-color: var(--color-sand);
  color: var(--color-navy);
  font-weight: 600;
}

tr:hover {
  background-color: var(--color-cream);
}

/* Blockquotes */
blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  background-color: var(--color-sand);
  font-style: italic;
  color: var(--color-text);
}

blockquote p {
  margin: 0;
  font-size: 1.1rem;
}

blockquote footer {
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-light-text);
  font-size: 0.95rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
