
/* grabwp-chunk: style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header & Nav */
header {
    background-color: #ffffff;
    border-bottom: 2px solid #e60000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    height: 50px;
    display: block;
}

nav {
    display: block;
}

.wp-block-navigation__container {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.wp-block-navigation-item__content {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.wp-block-navigation-item__content:hover {
    color: #e60000;
}

/* Sections */
section {
    padding: 5rem 5%;
}

.section-dark {
    background-color: #000000;
    color: #ffffff;
}

.section-gray {
    background-color: #f4f4f4;
}

.section-red {
    background-color: #e60000;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 900;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-dark {
    color: #000000;
}

.section-title {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-red {
    background-color: #e60000;
    color: #ffffff;
}

.btn-red:hover {
    background-color: #cc0000;
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
}

.btn-black:hover {
    background-color: #333333;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
}

.btn-white:hover {
    background-color: #f4f4f4;
}

/* Cards */
.card {
    background: #ffffff;
    color: #000000;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border-bottom: 4px solid #e60000;
}

.card img {
    border-radius: 4px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.border-highlight {
    border: 4px solid #e60000;
    transform: scale(1.05);
}

/* Service List */
.service-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.contact-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: #e60000;
}

textarea.form-control {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem 5%;
    border-top: 5px solid #e60000;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .wp-block-navigation__container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .border-highlight {
        transform: scale(1);
    }
}
