/* Embassy Pro Books - Reconstructed Static Site
   Based on Wayback Machine snapshot from 2021-01-17 */

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

:root {
  --primary: #1a2744;
  --primary-light: #2c3e63;
  --accent: #b8860b;
  --accent-light: #d4a017;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-alt: #f0f2f5;
  --border: #dcdcdc;
  --footer-bg: #222222;
  --footer-text: #cccccc;
  --sidebar-bg: #f5f5f5;
  --success: #28a745;
  --error: #dc3545;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

p { margin-bottom: 1em; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  border-bottom: 3px solid var(--primary);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-style: italic;
  color: var(--text-light);
  font-size: 12px;
  font-family: 'Georgia', serif;
}

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

.header-actions .phone {
  font-size: 14px;
  color: var(--text);
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--accent-light);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: #000;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.hero-slogan {
  font-style: italic;
  font-size: 32px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 5px;
}

.hero-subtitle {
  font-size: 15px;
  opacity: 0.9;
}

/* ===== Main Layout ===== */
.main-wrapper {
  display: flex;
  gap: 25px;
  padding: 25px 0;
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
}

.sidebar-nav {
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 20px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  border-bottom: 1px solid var(--border);
}

.sidebar-nav li:last-child {
  border-bottom: none;
}

.sidebar-nav a {
  display: block;
  padding: 10px 15px;
  color: var(--primary);
  font-family: 'Georgia', serif;
  font-size: 14px;
  transition: background 0.15s, padding-left 0.15s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding-left: 20px;
}

.sidebar-box {
  background: #fffbe6;
  border: 1px solid #e6d890;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--accent);
  text-align: center;
}

.sidebar-box .highlight {
  font-size: 20px;
  font-weight: bold;
  color: #c0392b;
  text-align: center;
  display: block;
  margin: 8px 0;
}

.sidebar-box .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.newsletter-box {
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}

.newsletter-box h3 {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.newsletter-box input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  margin-bottom: 8px;
}

.newsletter-box .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 8px;
}

/* ===== Content ===== */
.main-content {
  flex: 1;
  min-width: 0;
}

.content-header {
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.content-header h1 {
  margin-bottom: 5px;
}

.tagline {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
}

.feature-box {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.feature-box h3 {
  color: var(--accent);
  margin-top: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.two-col img {
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--success);
  font-weight: bold;
  font-size: 16px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.testimonial .quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--text);
}

.testimonial .author {
  font-weight: bold;
  color: var(--primary);
  font-size: 14px;
}

.testimonial .author-company {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial .author-company a {
  color: var(--accent);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-caption {
  padding: 10px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
}

/* ===== Forms ===== */
.contact-form {
  max-width: 500px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 14px;
}

.form-group .required {
  color: #c0392b;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-error {
  color: var(--error);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: none;
}

/* ===== FAQ ===== */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 18px;
  background: var(--bg-light);
  cursor: pointer;
  font-weight: bold;
  color: var(--primary);
  position: relative;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: normal;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: "\2013";
}

.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 15px 18px;
  max-height: 500px;
}

/* ===== Sidebar Right ===== */
.right-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.award-badge {
  text-align: center;
  padding: 15px;
  background: #fff8e1;
  border: 1px solid #e6d890;
  border-radius: 4px;
  margin-bottom: 20px;
}

.award-badge .badge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 10px rgba(184,134,11,0.3);
}

.award-badge p {
  font-size: 12px;
  color: var(--text);
  margin: 0;
  font-weight: bold;
}

.cta-box {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  padding: 20px 15px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
}

.cta-box h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.cta-box .discount {
  font-size: 32px;
  font-weight: bold;
  display: block;
  margin: 10px 0;
}

.cta-box .small-text {
  font-size: 12px;
  opacity: 0.9;
  display: block;
  margin-bottom: 12px;
}

.cta-box .btn {
  background: #fff;
  color: #c0392b;
  font-weight: bold;
}

.cta-box .btn:hover {
  background: #f0f0f0;
  color: #c0392b;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 35px 0 20px;
  margin-top: 40px;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
}

.footer-col p,
.footer-col li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--footer-text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--footer-text);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.social-icon:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #888;
}

/* ===== 404 Page ===== */
.error-page {
  text-align: center;
  padding: 60px 20px;
}

.error-page h1 {
  font-size: 72px;
  color: var(--primary);
  margin-bottom: 10px;
}

.error-page p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 25px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-wrapper {
    flex-direction: column;
  }

  .sidebar,
  .right-sidebar {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slogan {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-actions {
    text-align: center;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero-overlay {
    padding: 15px;
  }

  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
