/* =========================================
   Design Tokens & Base
   ========================================= */

:root {
  --font-body: "Open Sans", Arial, sans-serif;
  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --color-bg: #ffffff;
  --color-bg-soft: #f5f5f5;
  --color-text: #222222;
  --color-muted: #666666;

  --color-brand: #ff6600;
  --color-brand-dark: #e05400;
  --color-accent: #ff7b00;

  --color-border: #dddddd;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;

  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 18px 36px rgba(0, 0, 0, 0.18);

  --container-width: 1100px;
  --gutter: 1.5rem;
}

/* Reset-ish */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff url("../images/bg1.jpg");
}

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

a {
  color: var(--color-brand);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 2px;
}

/* =========================================
   Typography
   ========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin: 0 0 0.75em;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p,
ul,
ol {
  margin: 0 0 1.4em;
}

/* Utility text classes */

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

.text-muted  { color: var(--color-muted); }
.text-white  { color: #ffffff; }
.text-brand  { color: var(--color-brand); }

.fs-small  { font-size: 0.875rem; }
.fs-normal { font-size: 1rem; }
.fs-large  { font-size: 1.125rem; }
.fs-xl     { font-size: 1.25rem; }
.fs-xxl    { font-size: 1.5rem; }

.fw-regular { font-weight: 400; }
.fw-bold    { font-weight: 700; }

/* For reusing old small text naming */
.bodysmaller {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-muted);
}

/* =========================================
   Layout
   ========================================= */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 3rem 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

/* Simple grid utilities */

.grid {
  display: grid;
  gap: 1.75rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Header & Navigation
   ========================================= */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gutter);
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: none;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav a.book-now-link {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
  color: #ffffff;
  box-shadow: var(--shadow-soft);

}

.site-nav a.book-now-link:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.75rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* =========================================
   Hero
   ========================================= */

.hero {
  position: relative;
  color: #ffffff;
  padding: 3.5rem 0 3rem;
  background: #ff6600; /* or any colour you like */
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.hero-subheading {
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hero-phone {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-contact-note {
  font-size: 0.95rem;
  max-width: 520px;
}

.hero-contact-link {
  color: #ffffff;
  text-decoration: underline;
}

/* Small screens hero */
@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 0 2.25rem;
  }

  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-outline {
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* For legacy naming inside form actions */
.enquiry-form .btn-primary {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #ff7b00, #ff3b00);
  box-shadow: 0 14px 28px rgba(255, 80, 0, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.enquiry-form .btn-primary:hover {
  box-shadow: 0 18px 36px rgba(255, 80, 0, 0.36);
  transform: translateY(-1px);
}

/* =========================================
   Feature Cards
   ========================================= */

/* FORCE 3 images per row */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
}

/* Make it responsive on mobile */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feature-card-body {
  padding: 1rem 1.1rem 1.3rem;
  text-align: center;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--color-brand);
}

/* =========================================
   Promo heading tweak
   ========================================= */

.promo-heading {
  margin-top: 1.5rem;
}

/* =========================================
   Enquiry Form (modernised)
   ========================================= */

.section-enquiry {
  padding: 3rem 0 4rem;
  background: var(--color-bg-soft);
}

.enquiry-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Header */
.enquiry-form .form-header {
  text-align: center;
}

.enquiry-form .form-header h3 {
  display: inline-block;
  background: #ff7b00;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.enquiry-form .form-header .bodysmaller {
  margin: 0;
}

/* Each field group */
.enquiry-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Labels */
.enquiry-form label {
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

/* Inputs and textarea */
.enquiry-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1.05rem;
  font-family: var(--font-body);
  background: #fff;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-form .form-control:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.18);
  outline: none;
}

/* Two-column row (email + phone etc.) */
.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Validation message (if you hook up JS later) */
.enquiry-form #validation {
  font-weight: 600;
  color: #c00;
  text-align: center;
  margin-bottom: 4px;
}

/* Button area */
.enquiry-form .actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .enquiry-form {
    padding: 24px 18px 32px;
  }

  .enquiry-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Footer
   ========================================= */

.site-footer {
  background: #222222;
  color: #f0f0f0;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.site-footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-brand);
}

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

.footer-list li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #bbbbbb;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

/* Social icons row */
.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* =========================================
   Misc legacy-compat bits (if needed)
   ========================================= */

/* If you have generic .image wrappers on other pages */
.image {
  display: inline-block;
}

/* Clearfix helper for any old floats (just in case) */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* FORCE Get In Touch buttons side-by-side */
.get-in-touch-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 30px auto !important;
  flex-wrap: wrap !important;
}

.get-in-touch-buttons .btn,
.get-in-touch-buttons .btn-call,
.get-in-touch-buttons a {
  display: inline-flex !important;
  width: auto !important;
  min-width: 220px !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  text-align: center !important;
}

/* Floating contact icons – base layout */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Each round button */
.floating-contact .fc-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Icon image inside the circle */
.floating-contact .fc-item img {
  width: 60%;        /* icon never touches the edge */
  height: 60%;
  display: block;
}

/* Hover effect (desktop only really) */
.floating-contact .fc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-contact .fc-item {
    width: 48px;
    height: 48px;
  }
}
