222 lines
7.0 KiB
HTML
Executable File
222 lines
7.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Support | Suite Dog</title>
|
|
<style>
|
|
:root {
|
|
--primary: #0072FF;
|
|
--secondary: #00C6FF;
|
|
--bg: #0f1115;
|
|
--card: #1a1d24;
|
|
--text: #e0e6ed;
|
|
--muted: #94a3b8;
|
|
--header-h: 70px;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-family: -apple-system, system-ui, sans-serif;
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
|
|
|
|
/* HEADER */
|
|
header {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0;
|
|
height: var(--header-h);
|
|
background: rgba(15, 17, 21, 0.9);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid rgba(255,255,255,0.1);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.nav-container {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.logo img { height: 35px; width: 35px; }
|
|
|
|
/* NAV LINKS */
|
|
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
|
.nav-menu a {
|
|
color: var(--muted);
|
|
text-decoration: none;
|
|
font-size: 0.95rem;
|
|
transition: 0.2s;
|
|
}
|
|
.nav-menu a:hover { color: var(--secondary); }
|
|
|
|
.lang-switch {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-left: 1rem;
|
|
}
|
|
.lang-link {
|
|
text-decoration: none;
|
|
font-size: 1.2rem;
|
|
filter: grayscale(100%);
|
|
transition: 0.2s;
|
|
}
|
|
.lang-link.active {
|
|
filter: grayscale(0%);
|
|
}
|
|
|
|
.burger {
|
|
display: none;
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
padding: 5px;
|
|
}
|
|
.burger div {
|
|
width: 25px;
|
|
height: 2px;
|
|
background: #fff;
|
|
margin: 5px 0;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.burger { display: block; }
|
|
.nav-menu {
|
|
position: fixed;
|
|
top: var(--header-h);
|
|
left: 100%;
|
|
width: 100%;
|
|
height: calc(100vh - var(--header-h));
|
|
background: var(--bg);
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
transition: 0.3s;
|
|
}
|
|
.nav-menu.active { left: 0; }
|
|
.nav-menu a { font-size: 1.5rem; }
|
|
.lang-switch { margin-left: 0; }
|
|
}
|
|
|
|
/* CONTENT */
|
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
|
h1, h2 { color: #fff; margin-bottom: 1.5rem; text-align: center; }
|
|
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
|
|
|
.card {
|
|
background: var(--card);
|
|
padding: 2.5rem;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(255,255,255,0.05);
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.info-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
|
|
.info-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
|
|
.info-table td:first-child { color: var(--muted); font-weight: 600; width: 35%; }
|
|
|
|
.cta {
|
|
background: linear-gradient(90deg, var(--primary), var(--secondary));
|
|
color: #fff;
|
|
padding: 12px 30px;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
/* FOOTER */
|
|
footer {
|
|
text-align: center;
|
|
padding: 4rem 0;
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
footer a { color: var(--muted); text-decoration: none; margin: 0 1rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container nav-container">
|
|
<a href="en.html" class="logo">
|
|
<img src="logo.svg" alt="Suite Dog">
|
|
Suite Dog
|
|
</a>
|
|
<button class="burger" id="burger">
|
|
<div class="line1"></div>
|
|
<div class="line2"></div>
|
|
<div class="line3"></div>
|
|
</button>
|
|
<nav class="nav-menu" id="menu">
|
|
<a href="en.html#mission">Mission</a>
|
|
<a href="team_en.html">Team</a>
|
|
<a href="history_en.html">History</a>
|
|
<a href="references_en.html">References</a>
|
|
<a href="support_en.html" style="color:var(--secondary)">Support</a>
|
|
<div class="lang-switch">
|
|
<a href="support.html" class="lang-link" title="Deutsch">🇩🇪</a>
|
|
<a href="support_en.html" class="lang-link active" title="English">🇺🇸</a>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<h2>Contact & Support</h2>
|
|
<p class="section-intro">Ready for software on the fly? Talk to us (or our bots).</p>
|
|
|
|
<div class="card">
|
|
<h3>Direct Contact</h3>
|
|
<table class="info-table">
|
|
<tr><td>Email</td><td>contact@suite-dog.tech</td></tr>
|
|
<tr><td>Support</td><td>support@suite-dog.tech</td></tr>
|
|
<tr><td>Location</td><td>Berlin, Germany</td></tr>
|
|
<tr><td>Availability</td><td>24/7 (AI Operations)<br>Mon-Fri 9-5 (Human Review)</td></tr>
|
|
</table>
|
|
<div style="text-align: center;">
|
|
<a href="#" class="cta">Open Ticket (Demo)</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<div style="margin-bottom: 1.5rem;">
|
|
<a href="impressum_en.html">Legal Notice</a>
|
|
<a href="#">Privacy Policy</a>
|
|
<a href="support_en.html">Contact</a>
|
|
</div>
|
|
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
|
</footer>
|
|
|
|
<script>
|
|
const burger = document.getElementById("burger");
|
|
const menu = document.getElementById("menu");
|
|
burger.addEventListener("click", () => {
|
|
menu.classList.toggle("active");
|
|
burger.classList.toggle("toggle");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|