:root {
    --primary: #1a1a1a;
    --accent-cyan: #00aeef;
    --accent-magenta: #ec008c;
    --accent-yellow: #fff200;
    --bg-light: #f8f9fa;
    --text-main: #333;
    --white: #ffffff;
    --container-width: 1100px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px; /* Perfect height for the navbar */
    width: auto;
    display: block;
}

/* Old logo styles removed */

nav ul {
    display: flex;
    list-style: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s linear;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 15px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Info Cards */
.info-section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.info-card h2 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 15px;
}

.magenta { background: var(--accent-magenta); }
.cyan { background: var(--accent-cyan); }

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-links a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.map-placeholder {
    height: 150px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #888;
}

.status-indicator {
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.open { background: #d4edda; color: #155724; }
.closed { background: #f8d7da; color: #721c24; }

footer {
    padding: 40px 0;
    text-align: center;
    background: var(--primary);
    color: #999;
    font-size: 0.9rem;
}

.text-blue {
    color: var(--accent-cyan);
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 40px;
        transition: right 0.3s ease;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}
