
body {
    font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; /* Use bold for headings */
}

p, a, li, span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; /* Normal weight for body text */
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #FFFFFF, #6B705C);
    /*pastel color gradient:*/
    /*background: linear-gradient(135deg, #fdf0f5, #f5f9ff, #f0f0ff);*/
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    /*background-image: url('images/buddha-logo.png');*/
    height:80px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #6F1D1B;
    text-decoration: none;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 10px; /* Adjust this as necessary */
    right: 20px; /* Adjust this to ensure it stays within view */
    z-index: 1001;;
}

.hamburger .bar {
    height: 4px;
    width: 25px;
    background-color: #36454F;
    margin: 3px 0;
}

/* Nav links styling */
.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links a {
    color: #36454F;
    text-decoration: none;
    padding: 14px 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6F1D1B;
}
            
         /* Responsive Navigation Bar */
    @media (max-width: 768px) {
        
    .logo {
      height:10vh;
    }
    .banner {display: none;}
    
    div.banner .quote { 
        font-size: 18px;
        top: 65%;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #ffffff;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 20px;
        border-bottom: 1px solid #eee;
    }
    
        .navbar .logo-placeholder {
            display: none; /*temporary*/
            margin-bottom: 10px;
            padding: 0 20px;
        }
        
        .card-container {
        flex-direction: column;
        align-items: center;
        }
    
        .card {
            width: 90%; 
            max-width: none;
        }
    
        .image-container {
            height: auto; /* Let the image container adjust its height based on content */
        }
    }
         
  
        /* Main Content */
        .main-content {
            padding: 20px;
            margin-top: 100px;
            text-align: center;
            flex: 1;
        }
        
        h1 {
            font-size: 36px;
            color: #6F1D1B;
        }
        
        p {
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            color: #36454F;
        }

        
        .card-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 30px;
        }

        .card {
            background-color: #FFFFFF;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 370px;
            text-align: center;
            flex-grow: 1;
            display: flex; 
            flex-direction: column;
        }

        .image-container {
            background-color: #D9A5B3; 
            height: 180px;
            width: 100%;
            position: relative;
            background-size: cover;
            background-position: center; 
            background-repeat: no-repeat;
            border-bottom: 1px solid grey;
            padding-bottom: 6px;
        }
        

        .img1 {
            background-image: url('images/meditate1.jpg');
        }

        .img2 {
            background-image: url('images/meditate2.jpg');
        }

        .card-content {
            padding: 20px;
            flex-direction: column;
            justify-content: space-between;
            display: flex;
            flex-grow: 1;
        }

        .card-content h3 {
            color: #6F1D1B; /* Deep Burgundy */
            font-size: 1.25rem;
            margin: 10px 0;
        }

        .card-content p {
            color: #6B705C; /* Olive Green */
            font-size: 1rem;
            margin: 10px 0;
        }

        .card-content a {
            display: inline-block;
            align-self: center;
            /*padding: 10px 20px;*/
            /*background-color: #DAB785;*/
            color: #6F1D1B;
            /*border-radius: 25px;*/
            text-decoration: underline;
            font-weight: bold;
            transition: background-color 0.3s;
            /*margin-top: 20px;*/
        }

        .card-content a:hover {
            /*background-color: #6F1D1B;*/
            color: #de3c25;
        }

        .pill {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #08313A;
            color: #FFFFFF;
            padding: 6px 40px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: bold;
        }
        

 .footer {
     /*background-color: #333;*/
    text-align: center; 
    width: 100%; 
    box-sizing: border-box; 
}

.footer p {
    color: #D1D1D1;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Space above the copyright text */
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-icon {
    margin-right: 5px;
    font-size: 20px; /* Adjust as needed */
}

.contact-text {
    margin-right: 10px;
    font-weight: bold;
}

.social-media img {
    width: 24px; /* Adjust icon size as needed */
    height: 24px;
}

.social-media a {
    display: inline-block;
    margin-left: 10px;
}