:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #34495e;
    --light-gray: #ecf0f1;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 1rem;
    color: #7f8c8d;
}

.services {
    display: flex;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Hamburger menu */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    color: var(--primary-color);
}

/* Side deck */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 220px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: -2px 0 12px rgba(0,0,0,0.1);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.side-menu.active {
    right: 0;
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    .menu-toggle {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    .side-menu {
        width: 200px;
        padding: 1.5rem 0.8rem;
    }
    .side-menu a {
        font-size: 0.95rem;
    }
    .container {
        padding: 2rem 0.5rem;
    }
}

.side-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.side-menu a:hover {
    color: #3498db;
}

#app {
    padding-top: 80px; /* Pushes content below hamburger */
    min-height: 100vh; /* Makes sure it fills screen if needed */
    position: relative;
    z-index: 1;
}
