:root {
    --dark: #020617;
    --light: #f8fafc;
    --text-dark: #e5e7eb;
    --text-light: #0f172a;
    --border: rgba(255,255,255,0.14);
    --accent: #6366f1;
}

/* THEME */
body.dark { background: var(--dark); color: var(--text-dark); }
body.light { background: var(--light); color: var(--text-light); }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    transition: background .4s, color .4s;
}

/* GLOW */
.glow-bg {
    position: fixed;
    inset: -40%;
    background:
      radial-gradient(circle at 30% 30%, #6366f1, transparent 40%),
      radial-gradient(circle at 70% 70%, #22d3ee, transparent 40%);
    filter: blur(120px);
    opacity: .3;
    z-index: -1;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 45px;
}
.logo {
    max-width: 185px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 44px;
    letter-spacing: -0.03em;
}
.hero p {
    opacity: .7;
}

/* SECTION */
.section {
    max-width: 1050px;
    margin: auto;
    padding: 45px 20px;
}

/* CONTACT CARD */
.contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 38px;
    backdrop-filter: blur(18px);
}

/* LINKS */
.link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.link:hover {
    text-decoration: underline;
}

/* HOURS */
.hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.day {
    min-width: 36px;
    font-weight: 600;
}

.time {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--border);
    white-space: nowrap;
}

/* MAP */
iframe {
    width: 100%;
    height: 360px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 28px;
    opacity: .5;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s cubic-bezier(.2,.7,.3,1);
}
.reveal.active {
    opacity: 1;
    transform: none;
}
/* BRAND HEADER */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.brand-text {
    text-align: left;
}

.logo {
    max-width: 110px;
}

/* HERO */
.hero {
    padding: 70px 20px 45px;
}

/* MOBILE */
@media (max-width: 640px) {
    .brand {
        flex-direction: column;
        gap: 18px;
    }
    .brand-text {
        text-align: center;
    }
    .logo {
        max-width: 130px;
    }
}
/* HEADER DIVIDER */
.header-divider {
    width: 100%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99,102,241,0.6),
        rgba(34,211,238,0.6),
        transparent
    );
    opacity: 0.8;
}
.header-divider {
    box-shadow: 0 0 12px rgba(99,102,241,0.35);
}
/* MOBILE ACTION BUTTONS */
.mobile-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

.action-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* PHONE */
.action-btn.phone {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* MAIL */
.action-btn.mail {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* ONLY MOBILE */
@media (max-width: 768px) {
    .mobile-actions {
        display: flex;
    }
}
