/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #4a90e2;
    --dark: #1e1e1e;
    --light: #ffffff;
    --gray: #f5f5f5;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--gray);
    color: var(--dark);
}

/* Header & Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--dark);
    color: var(--light);
    box-shadow: 0 4px 10px var(--shadow);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #4a90e2, #007aff);
    color: var(--light);
    padding: 80px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 80%;
    box-shadow: 0 8px 20px var(--shadow);
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

button {
    padding: 12px 20px;
    background: var(--dark);
    color: var(--light);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 15px;
}

button:hover {
    background: var(--primary);
}

/* Services */
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 90%;
}

.service {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 10px var(--shadow);
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: scale(1.05);
}

/* Video Section */
.video {
    text-align: center;
    margin: 40px auto;
}

.video h2 {
    margin-bottom: 20px;
}

video {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 6px 15px var(--shadow);
}

/* Testimonials */
.testimonials {
    background: var(--dark);
    color: var(--light);
    padding: 40px;
    text-align: center;
}

.testimonial {
    background: var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin: 10px auto;
    max-width: 60%;
    box-shadow: 0 4px 10px var(--shadow);
}

/* Contact Form */
.contact {
    text-align: center;
    padding: 30px;
}

input {
    width: 60%;
    padding: 12px;
    margin: 10px;
    border: 1px solid var(--dark);
    border-radius: 5px;
}

/* Debugger Sidebar */
#event-log {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 15px;
    box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.hidden {
    transform: translateX(100%);
}

/* Debugger Header */
#debugger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#close-debugger {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#event-list {

    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.log-entry {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.log-entry p {
    margin: 5px 0;
}

/* Debugger Toggle Button */
#toggle-debugger {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #4a90e2;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#toggle-debugger:hover {
    background: #007aff;
}

/* Popup */
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    display: none;
}

.hidden {
    display: none;
}
