﻿/* Fonts are loaded via link tag in base.html */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  line-height: 31.5px;
  color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

 .container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand a {
  font-family: 'Coustard', serif;
  font-size: 27.8415px;
  font-weight: 900;
  line-height: 30.6256px;
  color: rgb(18, 71, 73);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: rgb(18, 71, 73);
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-family: Arial, sans-serif;
  font-size: 13.3333px;
  padding: 10px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

/* Mobile menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-list a {
    display: block;
    padding: 10px 0;
  }
}

/* Hero Section */
.hero {
  padding: 40px 0;
}

.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-text h2 {
  font-family: 'Coustard', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 44px;
  color: rgb(18, 71, 73);
  margin: 40px 0 20px 0;
}

.hero-text p {
  font-family: 'Karla', sans-serif;
  font-size: 17.561px;
  line-height: 30.7317px;
  color: rgba(18, 71, 73, 0.75);
  margin: 12px 0 0 0;
}

.hero-text strong {
  font-weight: 700;
  color: rgb(18, 71, 73);
}

.hero-highlights {
  display: none;
}

/* Horizontal risk list under hero */
.risks {
  padding: 20px 0 40px;
}

.risks .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.risk-item {
  display: flex;
  align-items: center;
  margin: 16px 0;
}

.risk-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-color: rgb(18, 71, 73);
  margin-right: 24px;
  position: relative;
  flex-shrink: 0;
}

.risk-icon::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
}

.risk-text {
  font-family: 'Coustard', serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 900;
  color: rgb(18, 71, 73);
  margin: 0;
  flex: 1;
}

/* CTA Section */
.cta {
  padding: 30px 0;
  text-align: center;
}

.cta-lead {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  line-height: 31.2px;
  color: rgb(18, 71, 73);
  margin: 40px 0 20px 0;
  font-weight: 700;
  text-align: center;
}

/* Booking Section */
.booking {
  padding: 40px 0 60px;
}

.booking-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgb(245, 245, 245);
  border-radius: 4px;
  box-shadow: none;
}

.booking-inner h3 {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: rgb(18, 71, 73);
  margin: 0 0 20px 0;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-columns {
  flex-direction: row;
  gap: 15px;
}

.two-columns .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  line-height: 31.5px;
  color: rgb(18, 71, 73);
  background-color: rgb(237, 237, 237);
  border: 0;
  border-radius: 4px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.form-field select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-hours-hint {
  margin-top: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(18, 71, 73, 0.75);
}

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

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgb(0, 0, 0);
}

.checkbox-field input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

/* Field error highlighting */
.field-error label {
  color: #b00020;
}
.field-error input,
.field-error select,
.field-error textarea {
  outline: 2px solid #b00020;
  outline-offset: 0;
}

.captcha-placeholder {
  padding: 15px;
  border: 1px dashed #ccc;
  border-radius: 4px;
  text-align: center;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #666;
}

.btn-primary {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  color: #ffffff;
  background-color: rgb(18, 71, 73);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: rgb(15, 60, 62);
}

.btn-primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgb(18, 71, 73);
}

/* Form Message */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 24px;
  animation: slideIn 0.3s ease-out;
}

.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  border-top: none;
  background-color: rgb(245, 245, 245);
  padding: 40px 0 30px;
  margin-top: 40px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h5 {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23.4px;
  color: rgb(18, 71, 73);
  margin: 0 0 15px 0;
}

.footer-column p {
  font-family: 'Karla', sans-serif;
  font-size: 17.561px;
  line-height: 30.7317px;
  color: rgba(18, 71, 73, 0.75);
  margin: 5px 0;
}

.footer-column a {
  color: rgb(18, 71, 73);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

.footer-bottom a {
  color: rgb(18, 71, 73);
  text-decoration: underline;
}

/* Privacy Policy Page */
.privacy {
  padding: 40px 0 60px;
}

.privacy h2 {
  font-family: 'Coustard', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 44px;
  color: rgb(18, 71, 73);
  margin: 40px 0 20px 0;
}

.privacy h3 {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: rgb(18, 71, 73);
  margin: 30px 0 15px 0;
}

.privacy p {
  font-family: 'Karla', sans-serif;
  font-size: 17.561px;
  line-height: 30.7317px;
  color: rgba(18, 71, 73, 0.75);
  margin: 12px 0;
}

.privacy ul {
  font-family: 'Karla', sans-serif;
  font-size: 17.561px;
  line-height: 30.7317px;
  color: rgba(18, 71, 73, 0.75);
  margin: 12px 0;
  padding-left: 30px;
}

.privacy li {
  margin: 8px 0;
}

.privacy strong {
  font-weight: 700;
  color: rgb(18, 71, 73);
}

.privacy a {
  color: rgb(18, 71, 73);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .two-columns {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .booking-inner {
    padding: 20px;
  }
}
