/* @import url('grid.css'); */
@import url('typography.css');
@import url('colors.css');
@import url('buttons.css');
@import url('forms.css');
@import url('grid.css');
/* @import url('breakpoints.css'); */
@import url('animations.css');
@import url('utilities.css');
@import url('columns.css');
@import url('display.css');


* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

.site-navigation {
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
    flex-wrap: wrap; /* Allow items to wrap if needed */
}

body{
    margin: 0;
    padding: 0;
    background-color: #E4E4E6;
}

p{
    font-family: 'Libre Franklin', sans-serif;
}
h1, h2, h3, h4, h5{
    font-family: 'Playfair Display', serif;
}
.header {
    background-color: #000;
    padding: 2rem 1rem;
}

.footer-font {
	font-family: 'Libre Franklin', sans-serif;
	font-weight: 600;
	line-height: 28px;
}

    .site-branding {
        width: 50%;
    }
.nav {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.search {
    padding: 5px;
    border: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/Listwa/assets/images/home/hero-image.jpg');
    background-size: cover;
    background-position: center center; /* This ensures the image is centered */
    background-repeat: no-repeat;
    z-index: -1;
    scale: 1.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.25rem;
}


/* Work Section */
.work {
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.work h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.work-item {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.work-item:hover {
    transform: scale(1.05);
}

/* Articles Section */
.articles {
    padding: 40px 0;
}

.article-card {
    /* background: #fff; */
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.article-card p{
    color: #555555;
}

.article-card img {
    width: 100%;
    height: auto;
    display: block;
}


.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .article-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  
  @media (min-width: 640px) {
    .article-grid {
      grid-template-columns: 1fr 1fr;
    }


    .hero p{
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

  }

/* CTA Section */

.button-primary {
    background-color: #6200ea;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #3700b3;
}

/* Home Footer */
.footer {
    background-image: url('footer-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.footer-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-info h4 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-subscribe h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Gallery Page */
/* Header Section */
.gallery-header {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.category-select,
.search-input,
.search-button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.search-input {
    flex: 1;
}

/* Gallery Content */
.gallery-content {
    padding: 40px 0;
}

.filter-button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #ccc;
    cursor: pointer;
    margin-bottom: 20px;
}


.main-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation a {
    font-family: 'Libre Franklin', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600; /* Semi-bold */
}

.main-navigation a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
    animation: underline 0.3s ease-in-out;
}

/* Basic styling for article posts */
.entry-content {
    line-height: 1.8;
    font-size: 16px;
    
    margin: 0 auto; /* Center align posts */
    padding: 20px;
}
 

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: bold;
}
 
/* Paragraph alignment */
.entry-content p {
    text-align: inherit; /* Matches editor alignment */
    margin-bottom: 1em;
}
 
/* Image alignment */
.entry-content .alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
 
.entry-content .alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}
 
.entry-content .aligncenter {
    display: block;
    margin: 0 auto;
}
 
/* Full-width alignment for cover and group blocks */
.entry-content .alignwide {
    width: calc(100% + 20px);
    margin: 0 -10px;
}
 
.entry-content .alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
 
/* Blockquote styling */
.entry-content blockquote {
    border-left: 4px solid #ccc;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
}
 
/* List styling */
.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    padding-left: 20px;
}
 
/* Table styling */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
 
.entry-content table th,
.entry-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

/* Caption styling */
.entry-content figcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.site-title {
    font-size: 1.5rem;
    color: #fff;
}



/* Article Styles Scoped to entry-content class */
.entry-content p {
    margin: 0 0 1em;
    line-height: 1.7;
}

.entry-content h1 { 
    font-size: 2em; 
    margin: 0.67em 0; 
}

.entry-content h2 { 
    font-size: 1.5em; 
    margin: 0.75em 0; 
}

.entry-content h3 { 
    font-size: 1.17em; 
    margin: 0.83em 0; 
}

.entry-content ul {
    margin: 1em 0;
    padding-left: 40px;
    list-style-type: disc;
}

.entry-content ol {
    margin: 1em 0;
    padding-left: 40px;
    list-style-type: decimal;
}

.entry-content blockquote {
    margin: 1em 0;
    padding: 0 1em;
    border-left: 4px solid #ccc;
    color: #555;
}

.entry-content a {
    color: #0073aa;
    text-decoration: none;
}

.entry-content a:hover {
    color: #005177;
    text-decoration: underline;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignleft {
    float: left;
    margin-right: 1em;
}

.entry-content .alignright {
    float: right;
    margin-left: 1em;
}

.entry-content .wp-block-button__link {
    display: inline-block;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: #fff;
}

.entry-content .wp-block-button__link:hover {
    background-color: #005177;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.entry-content th, .entry-content td {
    padding: 0.5em;
    border: 1px solid #ddd;
}

.entry-content pre {
    background: #f4f4f4;
    padding: 1em;
    overflow: auto;
}

#podcast-header{
    background: transparent !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

/* Fade on bottom of podcast image */
.mask-gradient {
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 1s ease forwards;
}


@media (max-width: 768px) {
    .entry-content {
        max-width: 80vw; /* Adjust as needed */
    }
   
}

@media (min-width: 768px) {
     .site-branding{
        width: 20%;
    }
	.preview-spacing {
		padding-top: 2rem;
		margin-bottom: 2rem;
	}
}

@media (min-width: 1024px) {
    .site-branding{
        width: 15%;
    }
}

.video-container {
    border: 5px solid #000; 
    border-radius: 10px;     
/*     padding: 10px;            */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
/*     display: inline-block;    */
}

.work-image {
	border-radius: 10px;
}