/* filepath: c:\hafsa-bootcamp\empowering-minds\style.css */

/* CSS Variables */
:root {
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Macondo", cursive;
    --primary-color: #3a2620; /* dark brown */
    --secondary-color: #aa9581; /* light brown */
    --highlight-color: #f0f3f7; /* blue */
    --highlight-color-light: #7a9fc2; /* light blue */
}
/* General body styles */
body {
    background: #faf7f2;
    font-family: 'Playfair Display', serif;
    margin-top: 60px;
}



p{
    font-style: normal;
}

/* Navigation bar styles */
.custom-navbar {
    background: #72594f;
    color: #fff;
    display: flex;
    font-size: medium;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.navbar-brand{
    color: #fff;
}

.navbar-brand:hover{
    color: var(--secondary-color);
}

h3{
    font-size: medium;
}


.oval-card {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 50% / 40%; /* oval effect */
}


.custom-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.reassurance-quote{
    margin-top: 30px; 
    font-style: italic; 
    color: var(--primary-color)
}
.follow-us{
    max-width: 100px;
    
}

/* Buttons */


.custom-button {
    border: 2px solid var(--secondary-color);
    padding: 7px 25px;
    color: var(--highlight-color)
}

.custom-button:hover {
    background-color: var(--secondary-color);
    color: white
}

.custom-navbar .nav-link {
    color: #fff !important;
}

.custom-navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

.section {
    padding-top: 4rem; /* prevent navbar overlap */
}

.navbar-button {
  color: #fff;
  border: 2px solid var(--secondary-color);
  padding: 7px 25px;
  background-color: transparent;
}

.navbar-button:hover {
  background-color: var(--secondary-color);
  color: white;
}

.submit-button {
  color: #141212;
  border: 2px solid var(--secondary-color);
  padding: 7px 25px;
   background-color: transparent;
}


.responsive-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.custom-button-outline {
    border: 3px solid var(--highlight-color);
    padding: 7px 25px;
    color: var(--highlight-color)
}

.custom-button-outline:hover {
    background-color: var(--highlight-color);
    color: white
}

/* Hero section styles */
.hero {
    padding: 80px 60px 0 60px;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    color: #3d2f29;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 28px;
    color: #3d2f29;
    margin-bottom: 40px;
}

#contact.social-links i {
    color: var(--highlight-color-light);
    font-size: 1.9rem;
    transition: color 0.3s ease-in-out;
   
}

#contact.social-links i:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .responsive-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .responsive-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 844px) {
    .responsive-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .custom-navbar {
        min-height: 70px; /* Increase navbar height for mobile */
        padding: 10px 10px;
    }
    body {
        margin-top: 80px; /* Add more space above content */
    }
}

