/* style.css */

.navbar-brand {
    font-family: "DM Serif Display", serif;
}

.serif-heading {
    font-family: "DM Serif Display", serif;
}

body {
    font-family: "DM Sans", system-ui;
}

.page-title {
    background-image: url('../images/waveBackground.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 20%;
}

.responsive-heading {
    font-size: 4rem; 
}

@media (max-width: 1200px) {
    .responsive-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .responsive-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 2.5rem;
    }
    .navbar-brand small {
        font-size: 0.8rem;
    }
    .navbar-nav {
        text-align: right;
    }
    #skills h3 {
        font-size: 1.5rem;
    }
    #skills ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .responsive-heading {
        font-size: 2rem;
    }
    .social-media {
        text-align: center;
        margin-top: 20px;
    }
}

#skills ul li {
    margin-bottom: 10px;
}

#highlights .testimonial {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.social-media a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #2b2b2b
}

#cta {
    background-color: #414141;
}

/* Ensures footer sticks to bottom of page as long as main element with class content exists above it*/
/* Ensure the body and html take up the full height */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

form .form-control {
    padding: 0.75rem 1.25rem;
}

.btn-dark:hover {
    background-color: #2b2b2b;
}