/*General styling*/
/* Hide the .only-mobile element on desktop and larger screens */
@media (min-width: 1024px) {
    .only-mobile{
        display: none !important;
    }
}





#header-outer[data-lhe="animated_underline"] li > a .menu-title-text {
 color: black;
}

.custom-buttons{
		border-radius:8px;
}

.custom-paragraph{
		margin-top:22px;
}

.custom-footer-heading{
			font-size:25px !important;
		  margin-bottom:8px;
}

#footer-outer .widget h4, #sidebar h4 {
    margin-bottom: 8px;
    font-size: 21px;
}


@media (max-width: 768px) {
.custom-text{
		font-size:18px !important;
		line-height:0;
}
		

.custom-heading{
			font-size:30px !important;
}
		
.custom-special-heading{
		 text-align: center;
    font-size: 35px;
    line-height: 47px;
    margin-top: -89px;

		}
		
	.image-divider{
		max-width:100% !important;	
		}
		
		
}


/*style for type-writer effect*/
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: black;
    }
}

#typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid black; /* Adjust the blink cursor color */
    width: 0; /* Start with no width */
    animation: none; /* Default state: no animation */
    will-change: width;
}


/*single-recipe-styles*/

.single-recipe-container{
	padding-left:40px;
	padding-right:40px;
}

.intro-left {
    /* flex: 1; */
    display: flex;
		flex-direction: column;
    justify-content: center;
    text-align: center;
}


.intro-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
		padding-left:20px;
		padding-right:20px;
}

.intro-column {
    flex: 1;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.recipe-category {
    font-size: 1rem;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.recipe-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.recipe-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-buttons {
    display: flex;
    gap: 10px;
		justify-content:center;
}

.btn {
    padding: 10px 20px;
    background-color: #06311a !important;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #06311a !important;
		color:white;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    transform: translateY(-3px); /* Move the button up */
}

.intro-right {
    flex: 1.5; /* Slightly bigger than the left column */
}

.recipe-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recipe-featured-image {
    transition: all 0.3s ease; /* Smooth transition for the hover effect */
}

.recipe-featured-image:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Shadow effect */
}

/*content section styles*/
.content-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.content-column {
    padding: 20px;
}

.content-main {
    flex: 7; /* 70% width */
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.content-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.content-sidebar {
    flex: 3; /* 30% width */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/*recipe card section*/
.recipe-card {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recipe-card-columns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.recipe-card-left {
    flex: 1;
}

.recipe-card-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipe-card-right .featured-image {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.recipe-card-right .featured-image:hover {
    transform: scale(1.05);
}

.recipe-card-buttons {
    text-align: center;
    margin: 20px 0;
}
.rate-recipe button:hover, .print-recipe button:hover, .pin-button button:hover{
		
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Add shadow */
    transform: translateY(-3px); /* Move the button up */	
		
}

.recipe-card-buttons .btn {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recipe-card-buttons .btn:hover {
    background-color: #ff4040;
		
}

.recipe-card-buttons .pinterest-btn {
    display: inline-flex;
    align-items: center;
}

.recipe-card-buttons .pinterest-icon {
    background-image: url('/wp-content/uploads/2024/12/pinterest.png');
    width: 16px;
    height: 16px;
    margin-left: 5px;
    display: inline-block;
    background-size: contain;
}

.recipe-ingredients h3,
.recipe-instructions h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

 /* Ingredients List */
        .ingredients-list {
            margin: 20px 0;
            padding-left: 0;
            list-style: none;
        }

        .ingredients-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .ingredients-list input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .ingredients-list input[type="checkbox"]:checked + label {
            text-decoration: line-through;
            color: #888;
        }

.recipe-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.recipe-instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.instagram-call-to-action {
    display: flex;
    align-items: center;
    margin-top: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.instagram-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.recipe-meta {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    font-size: 16px;
		    padding-left: 20px;
}

.recipe-meta li {
    margin: 5px 0;
}


.recipe-card-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.recipe-card-buttons button,
.recipe-card-buttons .pin-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.recipe-card-buttons button:hover,
.recipe-card-buttons .pin-button:hover {
    background-color: #005bb5;
}

.instagram-cta {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.instagram-cta img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

/*recipe video section*/
.recipe-video-section {
    margin: 40px 0;
    text-align: center;
}

.recipe-video-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.recipe-video-wrapper iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.recipe-video-wrapper p {
    font-size: 16px;
    color: #555;
}

.recipe-video-wrapper .video-container {
    width: 800px !important;
    height: 400px !important;
    overflow: hidden;
    margin: 0 auto;
}

.recipe-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover; /* Ensure the video fills the container */
}

/*rating section*/
/* Rating stars */
.rating-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star.checked {
    color: #ffcc00; /* Yellow color */
}

/* Rating form styling */
.rate-recipe {
    text-align: center;
}

.submit-rating {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.submit-rating:hover {
    background-color: #e6b800;
}

.average-rating{
		text-align: center;
    margin-top: 10px;
}

.recipe-card-buttons .pin-button {
		    background-color: #de3737 !important;
}

#print-recipe{
	background-color:#06311a !important;	
}

#rate-recipe{
		background-color:#06311a !important;	
}


/*mobile styling for single-recipe page*/
@media (max-width: 768px) {
		.intro-section{
			flex-direction:column-reverse;	
		}
		.intro-left{
			margin-top:-42px;	
		}
		
		
		.recipe-featured-image {
    transition: all 0.3s ease;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
		
		.recipe-featured-image img {
    height: auto;
    border-radius: 10px;
}
		.recipe-title {
    font-size: 2.3rem;
		}
		
		.btn{
			background-color: #06311a;
			border-radius: 8px;
			font-size:0.8rem;
		}
		.content-section {
				flex-direction:column;
		}
		
		.content-column {
    padding: 10px;
}
		.recipe-card {
    width: 100%;
		}
		
		.recipe-card-right .featured-image {
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 132px;
    height: 131px;
    top: 11px;
    position: relative;
}
		.recipe-card-columns{
			  flex-direction: column-reverse;
		}
		
		.recipe-title {
        font-size: 1.4rem;
        text-align: center;
    }

		.recipe-meta {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    font-size: 16px;
    padding-left: 70px;
}

.recipe-card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
}
		
		.recipe-card-buttons button{
			font-size: 18px;
    background-color: #06311a;
		}
		
		.ingredients h3{
				text-align:center;
		}
		.recipe-instructions h3{
				text-align:center;
		}
		.recipe-instructions{
				margin-top:50px;
		}
		
		.recipe-video-wrapper .video-container {
     width: 100% !important;
    height: 250px !important;
}
		.recipe-video-wrapper .video-container{
			width: 100% !important;
      height: auto !important;
		}
		
		.rate-recipe h2{
				margin-top:50px;
		}
		
		.average-rating{
		text-align: center;
    margin-top: 10px;
}
		/*newsletter mobile styles*/
		.newsletter-signup h1 {
    font-size: 1.5rem !important;
}
		.newsletter-btn{
			width: 110px !important;
    font-size: 10px !important;
    margin-right: 12px !important;
}	

		.email-field button img.icon {
				height: 11px !important;
				top: 1px !important;
				left: 3px !important;
				
		}
		.only-desktop{
			display:none !important;	
		}
		
		.comment-sec{
		width:100% !important;	
		}
		
}


/*newsletter form*/
.newsletter-signup {
    text-align: center;
    margin: 30px auto;
}

.newsletter-signup h2 {
    font-size: 1.2rem;
    color: #444;
    margin: 0;
}

.newsletter-signup h1 {
    font-size: 2rem;
    color: #e4990d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bolder;

}

.newsletter-signup p {
    font-size: 1rem;
    color: #666;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-field {
    position: relative;
    width: 100%;
    max-width: 400px;
		margin: 0 auto; 
}

.email-field input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    font-size: 14px !important;
    padding-right: 120px; /* Adjust for the button */
    box-sizing: border-box;
}

.email-field button {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}


.email-field button:hover {
    background-color: #e65c00;
}

.email-field button img.icon {
    width: 16px; /* Adjust the width as needed */
    height: 16px; /* Ensure the icon maintains aspect ratio */
    display: inline-block; /* Proper alignment */
		top: 2px;
    position: relative;
    left: 2px;
}

.newsletter-btn{
    margin-top: 5px !important;
    margin-bottom: 14px !important;
    margin-right: 7px;
    font-size: 14px !important;
    padding-left: 8px !important;

}


/*style for newsletter popup*/
/*newsletter-popup*/

/* Popup Container */
.popup-container {
    display: flex;
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Image Section */
.image-section {
    flex: 1;
    background-color: #f2f2f2; /* Light background color for padding area */
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 0 0 12px; /* Rounded corners on the left side */
}

/* Content Section */
.content-sec {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9; /* Soft background color */
    border-radius: 0 12px 12px 0; /* Rounded corners on the right side */
}

/* Heading Styling */
.content-sec h2 {
    font-size: 27px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    line-height:35px;
}

/* Paragraph Styling */
.content-sec p {
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

/* Form Styling */
.content-sec form input[type="text"],
.content-sec form input[type="email"],
.content-sec form input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

/* Submit Button Styling */
.content-section form input[type="submit"] {
    background-color: #ff6347;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.pum-theme-1227 .pum-container, .pum-theme-default-theme .pum-container {
    border-radius: 33px;
   border: 3px solid #e4990d;
}

.pum-theme-1227 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    right: 9px;
    top: 9px;
    border-radius: 46px;
    background-color: #06311a;
    width:51px;
    height:51px;
    font-size:20px;

}

.pum-overlay {
    background: rgba(0, 0, 0, 0.7) !important; 
    transition: background 0.3s ease; 
}


/* Entry Animation for newsletter pop-up */
@keyframes teeter {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Entry Animation */
.pum-theme-1227 .pum-container, .pum-theme-default-theme .pum-container {
    animation: teeter 0.6s ease-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
    }

    .image-section img {
        border-radius: 12px 12px 0 0;
    }

    .content-sec {
        border-radius: 0 0 12px 12px;
        padding: 20px;
    }

    .content-sec h2 {
        font-size: 20px;
        line-height:30px;
    }

    .content-sec p {
        font-size: 16px;
        font-weight: bolder;
        margin-bottom:0px;
         
    }
.pum-theme-1227 .pum-container, .pum-theme-default-theme .pum-container {
    border-radius: 33px;
   border: 3px solid #e4990d;
    min-width: 0%;
    max-width: 88% !important;
    top: 125.755px;
    left: 22.364px !important;
}
}

/*mobile styling for single-recipe page*/
@media (max-width: 768px) {
		.recipe-filter-container {
				flex-direction:column;
				margin:0px;
		}
		 /* 2 columns on mobile */
    .recipe-post {
        width: calc(50% - 10px); /* 2 columns on mobile */
				padding:0px !important;
    }
		
		 .recipe-post-image img {
        width: 100%; /* Make image take up the full width */
        height: 115px !important; 
        object-fit: cover; /* Keep the image cropped */
    }
		
		.recipe-posts-container{
			padding:0px !important;	
		}
		
		.recipe-filters{
				padding:0px !important;
		}
}


/*styles for wp form */
div.wpforms-container-full .wpforms-field-label{
		color:#fff;
		}

div.wpforms-container-full .wpforms-field-sublabel{
		color:#fff;
}

div.wpforms-container-full input[type=text]:focus, div.wpforms-container-full input[type=email]:focus, div.wpforms-container-full textarea:focus, div.wpforms-container-full .wpforms-form textarea:focus {
		
		border:4px solid #e4990d;
    box-shadow:none;
}

div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=email], div.wpforms-container-full .wpforms-form textarea{
		background-color: transparent;
    border-radius: 10px;
    color: #fff;
    border: 2px solid #e4990d;
    line-height: 100%;
    box-shadow: none;
		}

div.wpforms-container-full .wpforms-form textarea:focus {
    color: #fff;
}

div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]{
		background-color: #e4990d;
    color: #fff;
    font-weight: bold;
		
}


/*style for newsletter in footer widget*/
.footer-column-third.newsletter-signup {
    margin-top:16px;
		text-align:left;
}



.footer-column-third.newsletter-signup p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #06311a;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		width:100%;
}

.subscribe-button:hover {
    background-color: #06311a;
    transform: translateY(-3px);
}

.subscribe-button:active {
    transform: translateY(1px);
}

.subscribe-button .subscribe-icon {
    width: 18px !important;
    height: 18px !important;
    margin-left: 10px;
    transition: transform 0.3s ease;
		top:17px;
		position:relative;
}

.subscribe-button:hover .subscribe-icon {
    transform: translateX(5px);
}


/*category archive styles*/
/* Category Title */
.category-archive-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
		margin-top:45px;
}

/* Recipe Grid Layout */
.category-archive-recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
		padding-left:10px;
		padding-right:10px;
}

.category-archive-recipe-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.category-archive-recipe-post:hover {
    transform: scale(1.05);
}

.category-archive-recipe-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
		 height: 300px;
}

.category-archive-recipe-image img {
    width: 100%;
    height: 300px;
		object-fit:cover;
    transition: transform 0.3s ease-in-out;
}

.category-archive-recipe-image:hover img {
    transform: scale(1.1);
}

.category-archive-recipe-title {
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
    color: #333;
}

.category-archive-recipe-title a {
    text-decoration: none;
    color: inherit;
}

.category-archive-recipe-title a:hover {
    color: #007BFF;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .category-archive-recipe-grid {
        grid-template-columns: repeat(2, 1fr);
				padding-left: 10px;
				padding-right:10px;
    }
		
		.category-archive-recipe-title {
				line-height:normal;
		}
		
		.category-archive-recipe-image {
				height:150px;
		}
		
		.category-archive-recipe-post {
				padding:16px;
		}
		
		/*styles for overlay canva on mobile to center text */
		#slide-out-widget-area.slide-out-from-right .off-canvas-menu-container {
    width: 100%;
    text-align: center;
		font-size:18px;
}
		
		
}

/* Load More Button */
.category-archive-load-more {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 30px 0;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-archive-load-more:hover {
    background-color: #0056b3;
}