/* Custom Properties for Brand Colors */
:root {
    --maroon: #730E20;
    --orange: #F27D16;
    --blue: #032940;
    --white: #FFFFFF;
    --light-gray: #F0F0F0;
    --dark-gray: #333333;
    --dark-gray-alt: #555555;
    --orange-dark: #e06b14;
    --blue-dark: #021f30;
}

/* Typography */
@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../assets/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../assets/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
}

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    scroll-behavior: smooth;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--maroon);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bg-maroon { background-color: var(--maroon); }
.text-maroon { color: var(--maroon); }
.bg-orange { background-color: var(--orange); }
.text-orange { color: var(--orange); }
.bg-blue { background-color: var(--blue); }
.text-blue { color: var(--blue); }
.bg-orange-dark { background-color: var(--orange-dark); }
.bg-blue-dark { background-color: var(--blue-dark); }
.bg-light-gray { background-color: var(--light-gray); }

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styles */
i {
    transition: color 0.3s ease, transform 0.3s ease;
}

i:hover {
    transform: scale(1.2);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
    .btn { padding: 0.75rem 1.5rem; }
}

@media (max-width: 576px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}