/* === tagOK SHORTCUTS === */
[red] { color: #d32f2f; }
[white] { color: white; }
[black] { color: #000; }
[big] { font-size: .9rem; font-weight: 900; text-align: center; }
[huge] { font-size: 3rem; font-weight: 900; }
[center] { text-align: center; }
[cap] { text-transform: uppercase; }
[bold] { font-weight: bold; }
[tight] { line-height: 1.2; margin-bottom: 10px; }
[pad-200] { padding: 200px 0; }

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; }

/* === HEADER === */
header .header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

/* TOP BAR */
header .top-bar { display: flex; color: white; font-weight: bold; font-size: .8rem; }
header .contact-left { background: #d32f2f; width: 50%; padding: 12px 200px; text-align: left; }
header .email-right { background: #000; width: 50%; padding: 12px 200px; text-align: right; }
/* LOGO + MENU BAR */
header .logo-bar {
    background: white;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
header .container { max-width: 1400px; margin: 0 auto; padding: 0 10px; }
header .logo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}
header .logo {
    color: #d32f2f;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
header .nav-menu { display: flex; gap: 35px; }
header .nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 8px 0;
}
header .nav-menu a:hover { color: #d32f2f; }


/* === HERO STRIPE + OVERLAY === */
.hero-stripe {
    position: relative;
    height: 50vh;
    overflow: hidden;
}
.stripe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon-img {
    height: 50px; 
    width: auto;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
}
.hero-overlay h1 {
    font-size: 1.5rem;
    margin-bottom: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
     color: #d32f2f;
}
.hero-overlay p {
    font-size: 0.7rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}
.btn-red {
    background: #d32f2f;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn-red:hover { background: #b71c1c; }

/* === INFO BOX (OVERLAPS HERO) === */
.info-box-section {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}
.info-box {
    background: white;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 30vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.info-box {
   font-size: 0.7rem;
}
.info-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.info-col {
    flex: 1;
    text-align: center;
}
.info-col .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.info-col h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #d32f2f;
}
.info-col p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* === BLOG & SERVICES === */
.blog-section, .services-section {
    background: #fdfdfd;
    text-align: center;
    padding: 60px 0;
}
.blog-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1px;
    color: #d32f2f;
    text-align: center;
}
.services-section .container h2 {
    font-size: 1.5rem;
    margin-bottom: 1px;
    color: #d32f2f;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}
.services-grid ul {
    list-style: none;
    font-size: 1rem;
    line-height: 2;
    text-align: left;
}
.services-grid li:before {
    content: "• ";
    color: #d32f2f;
    font-weight: bold;
}

/* === CONTACT SPLIT === */
.contact-split {
    display: flex;
    height: 50vh;
    background: #d32f2f;
}
.contact-left, .contact-right {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-left {
    color: white;
}
.contact-left h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}
.contact-form-split input,
.contact-form-split textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}
.btn-white {
    background: white;
    color: #000;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
}
.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .info-box { width: 80%; height: auto; padding: 30px; }
    .info-grid { flex-direction: column; }
    .services-grid { flex-direction: column; gap: 20px; }
    .contact-split { flex-direction: column; height: auto; }
    .contact-left, .contact-right { width: 100%; padding: 40px; }
    .hero-overlay h1 { font-size: 2rem; }
}
/* === ICON FIX === */
.info-col .icon {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.icon-img {
    max-height: 50px;
    width: auto;
}

/* === TOP BAR MOBILE FIX === */
@media (max-width: 992px) {
    .top-bar {
        flex-direction: column;
    }
    .contact-left,
    .email-right {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
