/* ==========================================
   Divine Connectionz
   desktop.css
   Desktop Version (769px and above)
========================================== */

/* ---------- Reset ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
}

/* ==========================================
   HEADER
========================================== */

.topbar{

    max-width:1200px;

    margin:auto;

    padding:15px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#ffffff;

    border-bottom:1px solid #e5e5e5;

    position:sticky;

    top:0;

    z-index:1000;

}

/* ==========================================
   LOGO
========================================== */

.logo{
    width:90px;
    height:auto;
}


/* ==========================================
   HAMBURGER
========================================== */

.menu-toggle{

    display:none;

}

/* ==========================================
   HIDE MOBILE MENU
========================================== */

.mobile-menu{

    display:none;

}

/* ==========================================
   DESKTOP MENU
========================================== */
.desktop-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 40px;
    background:#fff;
}

.desktop-menu{

    flex:1;

    display:flex;

    justify-content:center;

}

.desktop-menu ul{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}


.desktop-menu li{

    position:relative;

}

.desktop-menu a{
    text-decoration:none;
    font-size:18px;
    color:#333;
    font-weight:500;
}

.desktop-menu a:hover{

    color:#d46a00;

}

/* ==========================================
   DROPDOWN
========================================== */

/* Desktop Dropdown */

.desktop-menu .submenu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:220px;

    background:#fff;

    list-style:none;

    padding:0;

    margin:0;

    box-shadow:0 4px 12px rgba(0,0,0,.15);

}

.desktop-menu .dropdown:hover > .submenu{

    display:block;

}

.desktop-menu .submenu li{

    display:block;

    width:100%;

}

.desktop-menu .submenu a{

    display:block;

    padding:12px 18px;

}

/* ==========================================
   HERO
========================================== */

.hero img{

    width:100%;

    display:block;

}

/* ==========================================
   CONTENT
========================================== */

main{

    max-width:900px;

    margin:40px auto;

    padding:0 20px;

}

section{

    margin-bottom:40px;

}

h2{

    font-size:32px;

    margin-bottom:15px;

    color:#222;

}

p{

    font-size:19px;

    text-align:justify;

}

/* ==========================================
   FOOTER
========================================== */

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#f5f5f5;

    border-top:1px solid #dddddd;

    padding:40px 20px;

}

.footer-container{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

/* Copyright */

footer p{

    margin:0 0 25px 0;

    font-size:20px;

    color:#555;

    text-align:center;

}

/* Social Icons */

.social-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    margin-top:10px;

}

.social-icons a{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#555;

    color:#ffffff;

    font-size:28px;

    text-decoration:none;

    transition:all .3s ease;

}

.social-icons a:hover{

    background:#ff9800;

    transform:translateY(-5px);

}
/* ==========================================
   DESKTOP ONLY
========================================== */
.mobile-topbar{
    display:none;
}

.mobile-menu{
    display:none !important;
}

.menu-toggle{
    display:none !important;
}

.desktop-menu{
    display:flex !important;
}
