:root {
    --primary-color: #7b9acc;
    --secondary-color: #FCF6F5;
    --title-font-family: "Playfair Display", serif;
    --default-font-family: "Poppins", sans-serif;
   
}

.orla-brand {
    color: var(--secondary-color);
    font-family: var(--default-font-family);
    padding-right: 20px;
    padding-left: 20px;
    font-size: 20px;
    text-decoration: none;
}

.orla-brand:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.nav-brand {
    font-family: var(--default-font-family);
}

.hero {
    background: var(--secondary-color);
    padding: 200px 20px;
    background-image: url(../images/hero.jpg);
    background-size: cover;
    background-position: left;
}

.secondary-hero {
    background: var(--secondary-color);
    padding: 40px 20px;
}

.title {
    color: var(--primary-color);
    font-family: var(--title-font-family);
    font-weight: bold;
    text-align: center;
    font-size: 40px;
}

.hero-title {
    color: var(--primary-color);
    font-family: var(--title-font-family);
    font-weight: bold;
    text-align: end;
    font-size: 40px;
}

h2 {
    color: var(--primary-color);
    font-family: var(--default-font-family);
}

p {
  font-family: var(--default-font-family);  
  padding: 20px;
  border-radius: 4px;
  line-height: 1.5;
}

.button-container {
    display: flex;
    justify-content: end;
}

.btn-container {
    display: flex;
    justify-content: left;
}

.btn-inquire {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.btn-branding {   
    border-radius: 4px;
    padding: 20px;
    text-decoration: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--default-font-family);
}

.btn-branding:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
}

.feature {
    text-align: center;
    font-size: 18px;
}

.app-description {
    padding: 90px 60px;
}

.about-description {
    padding: 25px 60px;
}

.details {
    text-align: end;
    font-size: 20px;
}

.title-content {
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    
}

.par-content {
    text-align: left;
    font-size: 14px;
    padding: 0;
}

.title-content-alt {
    text-align: center;
    font-size: 25px;
    line-height: 1.5;
}

.par-content-alt {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    padding: 0;
}

footer {
    margin: 60px 0;
}

.portfolio a {
    text-decoration: none;
    color: var(--primary-color);
}

.portfolio p {
    text-align: center;
    padding: 0;
}

.contact-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.title-contact-box {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 28px;
    text-align: left;
    padding: 0;
}

.par-contact-box {
    font-size: 12px;
    padding: 0;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0;
}

.contact-links a{
    color: var(--primary-color);
    text-decoration: none;
    font-size: 36px;
}

.contact-links a:hover {
    color: #243b5e;
}

.social-links a {
    margin: 0 20px;
    color: var(--primary-color);
    padding: 10px;
    font-size: 30px;
}

.social-links a:hover {
    color: #243b5e;
}

.social-links a:visited {
    color: var(--primary-color);
}

.git-link {
    color: var(--primary-color);
    text-decoration: none;
}

.git-link:visited {
    color: var(--primary-color);
    text-decoration: none;
}

footer .footer-content {
    text-align: center;
    font-size: 11px;
}


@media (max-width: 960px) {
    .app-description {
        text-align: center;
        padding: 0;
    }

    .about-description {
        text-align: center;
        padding: 0;
    }
}