
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

:root {
  /* Dark theme variables for an elegant feel */
  --bg: #0d0d0d;
  --text: #e6e6e6;
  --muted: #8a8a8a;
  --border: #333333;
  --card-bg: #181818;
  --primary: #4a90e2; /* azure tint on dark background */
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0,0,0,0.4);
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  /* Apply a faint logo in the background for an elite feel */
  background: var(--bg) url('../img/azur_logo_faint.png') center center/45vw no-repeat fixed;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  /* Use an elegant italic serif font for the brand */
  font-family: 'Cinzel', serif;
  font-style: italic;
  color: #c0c0c0;
}
.brand img {
  height: 40px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text);
}
.nav__link.is-active {
  background: var(--primary);
  color: #fff;
}
.nav__link:hover {
  background: #222222;
}
.hero {
  padding: 80px 0 40px;
  text-align: center;
}
.hero h1 {
  margin-top: 0;
  font-size: 40px;
  line-height: 1.2;
  color: #dcdcdc;
}
.hero p {
  margin: 16px 0 32px;
  font-size: 20px;
  color: #aaaaaa;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: #367dc4;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-ghost:hover {
  background: #222222;
}
.section {
  padding: 40px 0;
}
.section h2 {
  margin-top: 0;
  font-size: 28px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  color: #eaeaea;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  z-index: 50;
}
.chat-bubble:hover {
  background: #367dc4;
}
@media (max-width: 600px) {
  .chat-bubble {
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    padding: 10px 12px;
  }
}
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/*
 * Hotline bubble styling
 * This floating button appears on every page to give visitors
 * quick access to the 24/7 emergency hotline for handyman
 * requests. It uses a vivid red hue to stand out against the
 * dark theme, with a subtle hover transition. The gap between
 * the icon and text ensures legibility at various screen sizes.
 */
.hotline-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e74c3c; /* urgent red accent */
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hotline-bubble i {
  font-size: 18px;
}
.hotline-bubble:hover {
  background: #c0392b;
}
@media (max-width: 600px) {
  .hotline-bubble {
    bottom: 12px;
    right: 12px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

/*
 * Hero logo background styling
 * A semi‑transparent version of the AZUR logo appears at the
 * bottom of the hero section on the home page. Absolute
 * positioning centers the graphic and keeps it behind the
 * content without interfering with interactions. Adjust the
 * opacity here if the logo needs to be more or less visible.
 */
.hero-logo-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0.05;
  z-index: -1;
}
.hero-logo-bg img {
  width: 100%;
  height: auto;
}

/*
 * Spacing for icons within social links and service headings
 */
.social-links i {
  margin-right: 6px;
}

/*
 * Hero contact row styling
 * Appears just below the call-to-action buttons on the home page to
 * surface the hotline and social media links above the fold. The row
 * aligns items centrally and adapts on small screens.
 */
.hero-contact {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  color: #bbbbbb;
}
.hero-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-contact a {
  color: var(--primary);
}
.hero-contact .hero-social a {
  font-size: 20px;
}
.hero-contact .hero-social a:not(:last-child) {
  margin-right: 12px;
}

/* Social media links styling */
.social-links {
  margin-bottom: 8px;
  font-size: 14px;
}
.social-links a {
  color: var(--primary);
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}

/* Add spacing for icons in social links and service headings */
.social-links i {
  margin-right: 4px;
}
.card h3 i {
  margin-right: 8px;
}
.form {
  display: grid;
  gap: 16px;
}
.form input, .form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.details-list {
  padding-left: 20px;
}
.details-list li {
  margin-bottom: 8px;
}
@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero h1 {
    font-size: 32px;
  }
}
