/* Import Fira Code font */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
/* Elegant Baroque-inspired font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Blog Area */
.blog_area {
    padding: 0px;
}
.blogs-hero {
    display: flex;
    position: relative;
    height: 100vh;
    top: 0px;
    width: 100%;
    margin: 0;
    padding: 60px 20px;
    text-align: center;
    overflow: visible; /* Ensures the pseudo-element can overflow */
    z-index: -1;
    border-bottom-style: solid;
    border-bottom-color: #000000;
    border-bottom-width: 10px;
    background-image: url('../image/woman-winter/woman-winter_0.webp'); /* Replace with your desired background image */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background */
    background-repeat: no-repeat;
}

 /* Media query for very small screens (e.g., phones) */
 @media (max-width: 480px) {
    .blogs-hero h1 {
        font-size: 1.5em; /* Further reduce font size */
        padding: 6px; /* Reduce padding more */
        letter-spacing: 1px; /* Narrow spacing for small screens */
        margin-bottom: 8px; /* Reduce bottom margin */
    }
}
.blogs-hero p {
    position: relative;
    top: 50%;
    height: auto;
    width: 100%; /* Adjust width as needed */
    vertical-align: middle;
    font-size: 1.9em; /* Default font size for desktop */
    color: #ffffff; /* White for contrast on a bright background */
    text-shadow: 
        0px 0px 6px rgba(0, 0, 0, 0.7), /* Subtle glow */
        0px 0px 10px rgba(0, 0, 0, 0.5), /* Secondary shadow for stronger visibility */
        0px 0px 15px rgba(0, 0, 0, 0.3); /* Tertiary shadow to ensure text pops */
    font-family: 'Great Vibes', cursive; /* Elegant Baroque-style font */
    line-height: 1.6; /* Improve readability with better spacing */
    letter-spacing: 0.8px; /* Slightly wider spacing for a modern feel */
    text-align: center; /* Center-align the text for balance */
    align-self: center;
    padding: 15px;
    margin: 15px 25%; /* Spacing around the slogan */
}
@media (max-width: 768px) {
    .blogs-hero p {
        margin-left: 0px;
        left: 0%;
        width: 60%;
    }
}

/* Blogs Gallery Grid */
.blogs-gallery-grid {
    position: relative;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr); /* Create 4 equal columns */
    padding: 10px;
}
/* Blog Items */
.blogs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-height: 200px; /* Reserve space for lazy-loaded images */
}

.blogs-item.visible {
    opacity: 1;
}

/* Blog Images */
.blogs-gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.blogs-gallery-grid img.lazy-load {
    background-color: #e0e0e0; /* Placeholder color */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .blogs-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .blogs-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Download */
.dropdown-container {
    display: inline-flex;
    background-color: #00000069; /* Green accent */
    position: absolute;
    top: 2px;
    left: 3px;
    font-weight: bold;
    z-index: 12;
    align-items: center;
    gap: 5px; /* Space between the button and dropdown */
    border-radius: 5px;
    padding: 2px 2px;
}

/* Style for the download button */
.dropdown_button {
    background-color: #00fc22; 
    border:none;
    color: rgb(69, 73, 69); /* White text for contrast */
    padding: 5px 6px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.dropdown_button:hover {
    background-color: #ffffff; /* Darker green on hover */
    color: #0e7213; /* White text for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for hover effect */
}

.dropdown_button:active {
    background-color: #1e7e34; /* Even darker green on click */
}

/* Style for the dropdown */
.file-type-dropdown {
    border: 2px solid #28a745; /* Green border to match the button */
    padding: 3px;
    border-radius: 5px;
    font-size: 11px;
    background-color: white;
    color: rgb(6, 182, 0);
    font-weight: bold;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.file-type-dropdown:hover {
    border-color: #fffb1f; /* Darker green border on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for hover effect */
}

.file-type-dropdown:focus {
    outline: none;
    border-color: #1e7e34; /* Even darker green for focus */
    box-shadow: 0 0 6px #1e7e34; /* Glow effect */
}

.readMoreTooltip{
    display: none;
    position: absolute;
    bottom: 10px; /* Center horizontally */
    left: 2px; /* Position below the main link */
    background-color: #ffffffc9; /* Dark background for contrast */
    color: #161515; /* White text for readability */
    padding: 5px;
    border-radius: 3px;
    font-size: 0.65em;
    font-weight: lighter;
    width: 405px; /* Optional: Set a max width */
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 12; /* Ensure it stays above other elements */
}
/* Lazy Loading Placeholder */
img.lazy-load {
    background: #f5f5f5;
    min-height: 200px; /* Reserve space */
}
/* General styling for pagination container */
.pagination-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between pagination buttons */
    margin: 20px 0; /* Spacing above and below the container */
    font-family: Arial, sans-serif; /* Clean font */
}
/* Styling for the "Load More" button */
.load-more {
    display: block;
    margin: 20px auto; /* Center horizontally */
    background-color: #28a745; /* Warning yellow color */
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: Arial, sans-serif; /* Consistent font */
    font-weight: bold;
}

.load-more:hover {
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: #166627;
    transform: translateY(-2px); /* Slight lift effect */
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .pagination-menu {
        flex-wrap: wrap; /* Allow wrapping on small screens */
        gap: 5px;
    }

    .pagination-menu button {
        font-size: 12px; /* Smaller font for smaller screens */
        padding: 8px 10px;
    }

    .load-more {
        font-size: 14px; /* Adjust font size */
        padding: 10px 15px;
    }
}
.pagination-button {
    background-color: #8820b8; /* Primary blue color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination-button:hover {
    background-color: #5b107e; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.pagination-button.active {
    background-color: #28a745; /* Green for active page */
    font-weight: bold;
    transform: none; /* No hover effect for the active page */
}

