<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Echo Productions | Professional Audio & Lighting</title>


<style>

html { scroll-behavior: smooth; }

body {

  margin: 0;

  font-family: Arial, sans-serif;

  background: #f8f9fa;

  color: #1a1a1a;

}


/* HEADER */

header {

  background: #fff;

  padding: 18px 28px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  box-shadow: 0 2px 6px rgba(0,0,0,.1);

}

.logo {

  display: flex;

  align-items: center;

  gap: 18px;

}

.logo img { height: 100px; }

.logo h1 {

  margin: 0;

  font-size: 42px;

  font-weight: 800;

  color: #e53935;

}

.quote-btn {

  background: #25D366;

  color: #fff;

  padding: 12px 24px;

  border-radius: 26px;

  font-weight: bold;

  text-decoration: none;

}


/* NAV */

nav {

  background: #c62828;

  padding: 14px 0;

  text-align: center;

}

nav a {

  color: #fff;

  margin: 0 18px;

  font-weight: bold;

  text-decoration: none;

}


/* HERO (image not cropped) */

.hero-img-wrapper {

  position: relative;

  width: 100%;

}

.hero-img-wrapper img {

  width: 100%;

  height: auto;

  display: block;

}

.hero-img-wrapper::before {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.35);

}

.hero-content {

  position: absolute;

  bottom: 40px;

  left: 50%;

  transform: translateX(-50%);

  text-align: center;

  color: #fff;

}

.hero-content h2 {

  font-size: 36px;

  text-shadow: 0 0 14px rgba(0,0,0,.9);

  margin: 0;

}

.hero-content a {

  display: inline-block;

  margin-top: 14px;

  background: #25D366;

  padding: 14px 28px;

  border-radius: 30px;

  color: #fff;

  font-weight: bold;

  text-decoration: none;

}


/* SECTIONS */

.section {

  max-width: 1100px;

  margin: auto;

  padding: 50px 16px;

}

.section h2 {

  text-align: center;

  margin-bottom: 30px;

  font-size: 30px;

}


/* GRID */

.grid {

  display: grid;

  gap: 20px;

  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));

}

.card {

  background: #fff;

  padding: 26px;

  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0,0,0,.08);

  text-align: center;

  font-size: 16px;

}


/* EVENTS */

.events-wrapper {

  display: flex;

  gap: 30px;

  align-items: flex-start;

  flex-wrap: wrap;

}

.events-text {

  flex: 2;

  font-size: 17px;

}

.ticket-box {

  flex: 1;

  background: #fff;

  padding: 22px;

  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0,0,0,.12);

  text-align: center;

}

.ticket-box img {

  width: 100%;

  max-width: 230px;

  border-radius: 10px;

  margin-bottom: 12px;

}


/* CONTACT INFO */

.contact-info {

  text-align: center;

  font-size: 16px;

  margin-bottom: 18px;

}

.contact-info a { color: #c62828; text-decoration: none; }

.contact-info a:hover { text-decoration: underline; }


/* FORM */

form input, form textarea {

  width: 100%;

  padding: 12px;

  margin-bottom: 12px;

  border-radius: 6px;

  border: 1px solid #ccc;

}

form button {

  background: #e53935;

  color: #fff;

  padding: 12px 26px;

  border: none;

  border-radius: 25px;

  font-weight: bold;

}


/* FOOTER */

footer {

  background: #0f0f0f;

  color: #aaa;

  text-align: center;

  padding: 30px 16px;

}

footer b { color: #fff; }


/* WHATSAPP FLOAT */

.whatsapp {

  position: fixed;

  bottom: 20px;

  right: 20px;

  background: #25D366;

  color: #fff;

  padding: 14px 18px;

  border-radius: 50px;

  font-weight: bold;

  text-decoration: none;

  box-shadow: 0 6px 20px rgba(0,0,0,.25);

  z-index: 999;

}


/* Hover polish */

.card:hover, .ticket-box:hover { transform: translateY(-4px); transition: .25s ease; }

.quote-btn:hover, form button:hover { opacity: .92; cursor: pointer; }


/* MOBILE */

@media(max-width:768px){

  header { flex-direction: column; gap: 10px; }

  .logo img { height: 70px; }

  .logo h1 { font-size: 28px; text-align: center; }

  .hero-content h2 { font-size: 22px; }

  .events-wrapper { flex-direction: column; }

}

</style>

</head>


<body>


<header>

  <div class="logo">

    <img src="https://i.postimg.cc/02rCPGMp/Echo1.png" alt="Echo Productions Logo">

    <h1>Echo Productions</h1>

  </div>

  <a href="#contact" class="quote-btn">Quotation</a>

</header>


<nav>

  <a href="#services">Services</a>

  <a href="#prices">Prices</a>

  <a href="#events">Events</a>

  <a href="#contact">Contact</a>

</nav>


<!-- HERO -->

<div class="hero-img-wrapper">

  <img src="https://i.postimg.cc/W393Xk7y/Chat-GPT-Image-Jan-13-2026-03-21-58-AM.png" alt="Live concert sound console SQ6">

  <div class="hero-content">

    <h2>Professional Audio & Lighting for Live Events</h2>

    <a href="#contact">Get a Quotation</a>

  </div>

</div>


<section id="services" class="section">

  <h2>Our Services</h2>

  <div class="grid">

    <div class="card">Sound Systems<br>PA · Line Array · Mixers</div>

    <div class="card">Lighting<br>Moving Heads · DMX</div>

    <div class="card">LED Screens<br>Indoor & Outdoor</div>

    <div class="card">Power & Effects<br>Generators · Smoke</div>

  </div>

</section>


<section id="prices" class="section">

  <h2>Hire Prices</h2>

  <div class="grid">

    <div class="card">PA Small<br>£350</div>

    <div class="card">PA Medium<br>£750</div>

    <div class="card">Large Systems<br>Contact Us</div>

  </div>

</section>


<section id="events" class="section">

  <h2>Concerts & Events</h2>

  <div class="events-wrapper">

    <div class="events-text">

      <p>

        We provide professional sound and lighting for concerts, festivals,

        cultural and corporate events across the UK.

      </p>

      <p>

        Need tickets or event support? Contact us anytime on WhatsApp.

      </p>

      <a class="quote-btn" href="https://wa.me/447951787298">WhatsApp</a>

    </div>


    <div class="ticket-box">

      <img src="https://i.postimg.cc/SsFyNGxX/99e13660-33a0-4eaa-a34d-7ea1fc1e1e56.jpg" alt="Llajtaymanta Concert">

      <h3>Llajtaymanta in Concert</h3>

      <p>07 March 2026<br>The Royal Regency · London</p>

      <a class="quote-btn"

         href="https://wa.me/447951787298?text=Hi%2C%20I%20want%20tickets%20for%20Llajtaymanta%20(07%20March%202026)%20at%20The%20Royal%20Regency.">

        Buy Tickets

      </a>

    </div>

  </div>

</section>


<section id="contact" class="section">

  <h2>Request a Quotation</h2>


  <!-- UPDATED COMPANY EMAILS -->

  <div class="contact-info">

    📧 <strong>Company Email:</strong>

    <a href="mailto:quotes@echoproductions.co.uk">quotes@echoproductions.co.uk</a><br>

    👤 <strong>Manager:</strong>

    <a href="mailto:admin@echoproductions.co.uk">admin@echoproductions.co.uk</a><br>

    📞 <strong>Phone:</strong> 07951 787298

  </div>


  <!-- FORM (Formspree) -->

  <form action="https://formspree.io/f/mwvvkwra" method="POST">

    <input type="text" name="name" placeholder="Your Name" required>

    <input type="email" name="email" placeholder="Your Email" required>

    <textarea name="message" placeholder="Event details" required></textarea>


    <input type="hidden" name="_subject" value="New quotation request - Echo Productions">

    <button type="submit">Send Request</button>

  </form>

</section>


<footer>

  <p><b>Echo Productions</b> · Sound & Lighting · UK</p>

  <p>

    📧 quotes@echoproductions.co.uk · 📞 07951 787298

  </p>

</footer>


<a class="whatsapp" href="https://wa.me/447951787298">💬 WhatsApp</a>


</body>

</html>