@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* header styles */
    .logo img{
        height: 75px;
        object-fit: contain;
    }
 
/* Hero background */
.hero-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.5) 50%, rgba(0,0,0,0.7) 100%), url('../../assets/images/hero-img.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 800px;
}

/* Glass effect */
.glass-effect {
   background: rgb(224 224 224 / 43%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255);
}
.dark .glass-effect {
    background: rgba(24, 24, 27, 0.6);
}
 /*footer logo  */
 .footer-logo img{
        height: 100px;
    }