:root {
    --primary-color: #4B006E;
    /* Purple from the logo */
    --secondary-color: #000000;
    /* Black from the logo */
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    color: inherit;
    /* Inherit the text color from the parent element */
    text-decoration: none;
    /* Remove underline */
    cursor: pointer;
    /* Show pointer cursor on hover */
}

a:hover {
    text-decoration: none;
    /* Ensure no underline on hover */
    color: inherit;
    /* Keep the same color on hover */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    /* background-color: #3A0053; */
    background-color: var(--secondary-color);
    /* Slightly darker purple for hover */
    border-color: #3A0053;
}

.text-primary {
    color: var(--primary-color) !important;
}

#logo {
    text-align: left !important;
    /* Force text alignment to the left */
}

#logo img {
    margin-left: 0 !important;
    /* Remove any unintended margin */
    display: block;
    /* Ensure the image behaves as a block element */
}

.nav .btn {
    font-size: 1.25rem;
    /* Increase font size */
    padding: 0.75rem 1.5rem;
    /* Increase padding */
}

.hero-title {
    font-weight: 700;
    /* Bolder font weight */
    font-size: 2.5rem;
    /* Larger font size */
}

.hero-subtitle {
    font-weight: 500;
    /* Professional font weight */
    font-size: 1.25rem;
    /* Slightly larger font size */
}

.card-img-top {
    height: 200px;
    /* Set consistent height */
    object-fit: cover;
    /* Ensure images are cropped proportionally */
}

.contact-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.contact-item:hover {
    transform: scale(1.1);
    /* Zoom effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

@media (max-width: 576px) {
    .nav .btn {
        font-size: 1.3rem;
        /* Smaller font size */
        padding: 0.5rem 0.5rem;
        /* Reduced padding */
    }
}
