/* MOBILE */
@media (max-width: 768px) {

    /* NAV BAR */

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .header {
        width: 100%;
        display: flex;
        padding-top: 30px;
        padding-bottom: 30px;
        font-family:"Poppins", serif;
        justify-content: space-between;
        align-items: center;
    }
    .heading {
        display: flex;
        padding-left: 20px;
        max-width: 70%;
        gap: 10px;
    }
    .decoration { 
        width: 20px;
        height: 30px;
        display: flex;
        align-items: flex-start;
    }
    .square {
        width: 15px; 
        height: 15px;
        background-color: #0050FF;
       margin-top: 2px;
    }
    .name-title {
        display: flex;
        flex-direction: column;
    }
    .name-title p:first-of-type {
        font-weight: 600;
        font-size: 17px;
        padding-bottom: 5px;   
    }
    .name-title p:last-of-type {
        font-size: 14px;
       
    }
    .menu {
        position: relative;
        width: 30px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
        margin-right: 20px;
    }
    .burger-line:nth-child(1) {
        width: 20px;
        height: 4px;
        background-color: #0050FF;   /* Blue color for the lines */
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .burger-line:nth-child(2) {
        width: 30px;
        height: 4px;
        background-color: #0050FF;   /* Blue color for the lines */
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .burger-line:nth-child(3) {
        width: 20px;
        height: 4px;
        margin-left: 15px;
        background-color: #0050FF;   /* Blue color for the lines */
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    /* Menu overlay - hidden by default */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        background-color: #F4ECE6;/* Pink background */
        display: flex;          
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transition: height 0.5s ease-out, opacity 0.5s ease-out;
        z-index: 1000;           /* Ensure it's below the burger menu */
    }
    .nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .nav-links a {
        text-decoration: none;
        font-size: 24px;
        color: black;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    .nav-links a:hover {
        color: #0050FF;
    }
    } 
    
 
/* DESKTOP */
@media (min-width: 769px) {

    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
    .header {
        width:100%;
        display: flex;
        padding-top: 60px;
        padding-bottom: 60px;
        align-items: flex-start;
        font-family:"Poppins", serif;
    }
    .heading {    
        font-size: 16px;
        display: flex;
        width:50%;
        padding-left: 20px;
        gap: 10px;
    }
    /* Target the first <p> inside .heading and make it bold */
    .heading p:first-of-type {
    font-weight: 600;
    font-size: 16px;
    }
    .square {
        width: 20px; 
        height: 20px;
        background-color: #0050FF;   
    }
    .name {
       font-weight: 600; 
       font-size: 18px;
    }
    .nav-links{
        width: 50%;
        display: flex;
        padding-right: 20px;
        justify-content: flex-end;
        align-items: flex-end;
        justify-content: end;
    }
    .nav-links li{
        list-style: none;
        padding-right: 40px;
    }
    .nav-links li a{
       color: #000000;
       text-decoration: none;
       font-size: 16px; 
    }
    .nav-links li::after{
       content: "";
       width: 0%;
       height: 2px;
       background: #007BFF;
       display: block;
       margin: auto;
       transition: 0.5s;
    }
    .nav-links li:hover::after{
        width: 100%;
    }
 } 

 /* FOOTER DESKTOP */

 @media (min-width: 769px) {

    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
    .footer  {
        width: 100%;
        padding: 30px 60px;
        font-size: 14px;
        justify-content: space-between;  
    }
    .padding-bottom {
        padding-bottom: 20px;
    }
    .footer-parent {
        display: flex;
        width: 100%;
    }
    .footer-child {
        display: flex;
    }
    .footer-child:nth-child(1) {
        width: 50%;  
    }
    .footer-child:nth-child(2) {
        width: 30%;
        justify-content: flex-end;
    }
    .footer-child .email-info p:first-of-type {
        font-weight: 700;
        margin-left: 80px;
    }
    .footer-child .social-media p:second-of {
        font-weight: 700;
        margin-left: 5px;
    }
    .footer-child:nth-child(3) {
        margin-left: 20px;
        width: 15%;
        justify-content: flex-start;
        padding-left: 40px; 
    }
    .footer-child .social-media p:first-of-type {
        font-weight: 700;
        margin-left: 5px;
    }
    .social-media ul {
        display: flex;
        font-size: 20px;
        list-style: none;
        gap: 30px; 
        margin-top: -5px;
    }
    .social-media li i {
        color: black 
    }
} 

/* ADD FOOTER MOBILE  HERE*/


