/* ==========================
   GLOBAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* ==========================
   GLOBAL BUTTON STYLE
========================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ffb347;
  color: #1a1a1a;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #e69b2e;
}

/* ==========================
   HEADER / NAVIGATION
========================== */

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

.header {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffb347;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-left: auto;
  align-items: center;
}

.nav-links li a:hover {
  color: #ffb347;
}

.cta-call {
  background: #007bff;
  padding: 10px 18px;
  border-radius: 5px;
  color: #fff;
  margin-left: 25px;
}

.cta-call:hover {
  background: #005fcc;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* ==========================
   HERO SECTION
========================== */

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/hero.jpg') center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-kicker {
  color: #ffb347;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ==========================
   HIDDEN OLD SERVICES
========================== */
.hidden-section { display: none !important; }

/* ===========================================================
   FULL-SCREEN GLASS HERO SECTIONS (Bespoke + All Others)
=========================================================== */

.full-hero,
.bespoke-glass {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            var(--hero-image) center/cover no-repeat;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 60px;
}

/* Horizontal premium glass panel */
.bespoke-panel,
.hero-glass-box {
  width: 60%;
  max-width: 750px;
  padding: 25px 35px;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

.bespoke-panel h2,
.hero-glass-box h2 {
  color: #ffb347;
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.bespoke-panel p,
.hero-glass-box p {
  color: #eaeaea;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* ==========================
   BACKGROUND IMAGE ASSIGNMENTS
========================== */

.bespoke-glass {
  --hero-image: url('images/bespoke-signage.jpg');
}

.hero-restaurants {
  --hero-image: url('images/hero-restaurants.jpg');
}

.hero-neon {
  --hero-image: url('images/hero-neon.jpg');
}

.hero-vehicle {
  --hero-image: url('images/hero-vehicle-wraps.jpg');
}

/* ==========================
   ABOUT SECTION
========================== */

.about {
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid #222;
}

.about p {
  max-width: 800px;
  margin: auto;
  color: #ccc;
}

/* ==========================
   CONTACT SECTION (FIXED)
========================== */

.contact {
  padding: 30px 0 80px;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* LEFT SIDE (3 cards stacked vertically) */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each card */
.contact-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
}

/* RIGHT SIDE FORM */
.quote-form {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  background: #222;
  border: none;
  border-radius: 5px;
  color: white;
}

.quote-form button {
  background: #007bff;
  border-radius: 5px;
  padding: 14px;
  cursor: pointer;
}

.quote-form button:hover {
  background: #005fcc;
}

/* ==========================
   MOBILE FIX — STACK PROPERLY
========================== */

@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;     /* ← stack everything */
    gap: 25px;
    align-items: center;
  }

  .contact-info,
  .quote-form {
    width: 100%;
    max-width: 500px;
  }

  .contact-card {
    text-align: center;
  }
}

/* ==========================
   FOOTER
========================== */

.footer {
  padding: 25px 0;
  text-align: center;
  color: #777;
  background: #000;
  margin-top: 40px;
}

/* ======================================================
   DESKTOP NAVIGATION FIX (the important part)
====================================================== */

@media (min-width: 769px) {
  .nav-links {
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    width: auto !important;
    opacity: 1 !important;
    max-height: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }
}

/* ======================================================
   MOBILE NAVIGATION
====================================================== */
@media (max-width: 768px) {

  .menu-toggle { display: block; }
  .cta-call { display: none; }

  .nav-links {
    position: absolute;
    top: 91px;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px 0;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,0.05);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s, opacity .35s;

    z-index: 1199;
  }

  .nav-links.show {
    max-height: 350px;
    opacity: 1;
  }

  .full-hero,
.bespoke-glass {
    height: 100vh;                 /* 🔥 Full screen again on mobile */
    padding: 100px 20px 40px;      /* Space for header */
    
    display: flex;                 /* Keep same behaviour as desktop */
    justify-content: flex-end;     /* Align text box right */
    align-items: flex-end;         /* Box stays lower */
}
  .hero-glass-box,
  .bespoke-panel {
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    padding: 22px 18px;
    text-align: center;
  }
}
