/* Custom Styles for MarCal Grupo Constructor */
body {
    scroll-behavior: smooth;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-primary-tint {
    background-color: rgba(246, 141, 46, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #0A4C74;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    color: white;
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Section Padding */
.section {
    padding: 5rem 0;
}

/* Hero Section Adjustments */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Navigation Active State */
.nav-active {
    color: var(--primary);
    font-weight: 600;
}

/* Form Inputs */
input, textarea {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem;
    width: 100%;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #F68D2E;
    box-shadow: 0 0 0 3px rgba(246, 141, 46, 0.2);
}

/* Services Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Gallery */
.project-item {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.project-item:hover {
    transform: scale(1.05);
}

.project-item img {
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}
