﻿body {
    background: #f7f3ef;
    font-family: 'Segoe UI', sans-serif;
}

/* 🔴 Top bar */
.brick-topbar {
    background: linear-gradient(90deg,#7b1f1f,#b52a2a);
}

/* 🔴 Footer */
.brick-footer {
    background: #7b1f1f;
}

/* Hero text */
.hero-heading {
    font-weight: 700;
    font-size: 40px; /* Adjusted size */
    line-height: 120%;
}

.hero-green {
    color: #b52a2a; /* Adjusted brick red tone */
}

/* Section box */
.section-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Feature cards */
.feature-icon {
    width: 70px;
}

.feature-box {
    border-radius: 12px;
    background: #ffffff;
    transition: .2s ease;
}

    .feature-box:hover {
        transform: translateY(-5px);
    }

/* Typing effect */
.typing-animation {
    display: inline-block;
    border-right: 3px solid #c0392b;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(30,end), blink .6s infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}
.brick-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.brick-topbar-title {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.brick-topbar-actions {
    display: flex;
    gap: 10px;
}
/* 🔴 Sign In button */
.sign-in-btn {
    color: #212529; /* dark text for contrast */
    font-weight: 600;
    border: none;
    transition: all 0.25s ease-in-out;
}

    .sign-in-btn:hover {
        background-color: #ffca2c; /* brighter yellow on hover */
        color: #000;
        transform: translateY(-2px); /* subtle lift */
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    }

    .sign-in-btn:active {
        transform: scale(0.97); /* press effect */
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.2);
    }