
/* Haiar Concrete - Clean Modern Theme */

:root {
  --gold: #b79b5b;
  --black: #111;
  --white: #fff;
  --gray: #f6f6f6;
  --max: 1200px;
  font-family: "Arial", sans-serif;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
}

/* Layout */
.wrapper {
  width: 100%;
  max-width: var(--max);
  margin: auto;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  padding: 16px 0;
}

.header .container {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .brand h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.header .brand p {
  margin: 2px 0 0;
  color: var(--gold);
  font-weight: bold;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: bold;
  color: var(--black);
}

/* Boxed sections */
.boxed {
  background: var(--gray);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 30px;
  margin: 30px auto;
  width: 92%;
  max-width: var(--max);
}

/* Hero */
.hero {
  text-align: center;
  border: 3px solid var(--black);
  padding: 60px 20px;
  background: var(--white);
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: #fff;
}

/* Contact form */
form input, 
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 2px solid var(--black);
  font-size: 16px;
  background: #fff;
}

button {
  background: var(--black);
  color: var(--gold);
  padding: 14px 20px;
  border: 2px solid var(--black);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

/* Quote bar */
.quote-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  color: var(--gold);
  padding: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.quote-bar a {
  color: var(--gold);
  text-decoration: none;
}



/* Logo styling */
.logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}


.footer {
  background: #111;
  color: #b79b5b;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}

.footer-col p {
  margin: 4px 0;
}

/* mobile */
@media(max-width: 700px){
  .footer-inner {
    flex-direction: column;
  }
}


/* ----- New additions: icons, lightbox, badge, local-area ----- */

.local-area .town-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap:12px; }
.town-list li { background: #fff; border:2px solid #111; padding:8px 12px; border-radius:6px; font-weight:700; }

.icons-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px; margin-top:12px; }
.icon { display:flex; flex-direction:column; align-items:center; gap:8px; padding:12px; background:#fff; border:2px solid #111; border-radius:8px; cursor:default; }
.icon svg { stroke:#111; }
.icon span { font-weight:800; margin-top:6px; }

.about-crew p { margin:10px 0; }

/* Lightbox */
.lightbox { position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background: rgba(0,0,0,0.8); opacity:0; visibility:hidden; transition:opacity .2s ease; z-index:1000; }
.lightbox.open { opacity:1; visibility:visible; }
.lightbox img { max-width:92%; max-height:80%; border:4px solid #fff; border-radius:8px; }
.lb-close { position:absolute; top:20px; right:20px; background:#b79b5b; color:#111; border:none; padding:8px 12px; font-size:18px; border-radius:6px; cursor:pointer; }

/* Badge */
.badge { background:#b79b5b; color:#111; font-weight:800; padding:8px 12px; border-radius:6px; margin-left:12px; display:inline-block; }

.map-wrap iframe { border:2px solid #111; border-radius:8px; display:block; margin:12px 0; }

/* Gallery hover */
.gimg { transition: transform .18s ease, box-shadow .18s ease; }
.gimg:hover { transform: translateY(-6px) scale(1.02); box-shadow:0 10px 30px rgba(0,0,0,0.18); }



.open-booking {
  background: #111;
  color: #b79b5b;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid #111;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2000;
}

.booking-modal.open {
  visibility: visible;
  opacity: 1;
}

.booking-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  border: 3px solid #111;
}

.close-btn {
  background: #b79b5b;
  color: #111;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
}

/* Fullscreen on mobile */
@media(max-width: 700px){
  .booking-content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
    overflow-y: auto;
  }
}


/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  width: 32px;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid #111;
  padding: 14px 0;
}

.mobile-menu a {
  padding: 12px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu.open {
  display: flex;
}

/* Animated hamburger transform */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Show hamburger on mobile */
@media (max-width: 900px){
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

