/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: A child theme for the Hello Elementor theme.
 Author: Your Name
 Author URI: https://example.com
 Template: hello-elementor
 Version: 1.0
 Text Domain: hello-elementor-child
*/

/* Add your custom styles below this line */

body {
	display:flex;
	flex-direction: column;
	min-height:100vh!important;
}

.page-header .entry-title {
	display:none;
}

#comment-section {
   border: 1px solid #cecece;
   padding: 30px;
border-radius: 8px;
background: #efefef;
overflow-y: auto;
   resize: none;
	color:#333!important;
}


@keyframes smoke {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.seenewzealand-post {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px; /* Adds a 20px space between the left and right divs */
	border-bottom: solid 1px #efefef;
	padding: 10px 0;
}

.seenewzealand-left {
    flex: 0 0 30%;
    display: flex;
    justify-content: flex-start;
}

.seenewzealand-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
	
	.seenewzealand-read-more {
		text-transform: uppercase;
		font-size: 0.8rem;
		font-weight: 700;
		padding:0;
		color: #555!important;
	}
	
	.seenewzealand-read-more:hover {
		color: #000!important;
	}
	
		.seenewzealand-read-more a {
		color: #555!important;
	}



        
#submit-query:hover {
    background: #005a87;
}

.chatgpt-response {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#comments-list {
	margin-top: 20px!important;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-item {
    flex: 1 1 calc(25% - 8px);
    box-sizing: border-box;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 5px!important;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-modal img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.lightbox-modal.open {
    display: flex;
}

.subtopics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.subtopic-link,
.subtopic-link-original {
    display: block;
	background: #000000;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  color: #fff!important;
  font-size: 0.9em;
	font-weight: 600;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.subtopic-link a {
	color:#fff !important;
}

.subtopic-link:hover {
	background: #3b3b3b;
	color: #fff; 
}



.subtopic-link.active {
    color: #fff;
    background: linear-gradient(135deg, #4c6ef5, #1c7ed6);
    border-color: #1c7ed6;
}

.main-content, .main-title {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.main-content.fading, .main-title.fading {
    opacity: 0;
}

.elementor-location-footer{
    margin-top: auto;
}


.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625 = 56.25%) */
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-description {
	margin-top: 10px;
}

/* News Feed Container */
.subtopic-news-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 1480px; /* Adjust width as needed */
}

/* Individual News Feed Items */
.news-feed-item {
    background-color: #fff;
    overflow: hidden;
    flex: 1 1 calc(25% - 10px); /* Three items per row */
    max-width: calc(25% - 10px);
    display: flex;
    flex-direction: column;
    text-align: center;
	margin-bottom: 20px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .news-feed-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
        max-width: calc(50% - 20px);
    }
	
		.gallery-item {
    flex: 1 1 calc(33% - 8px);
    box-sizing: border-box;
}
    
      .seenz-related-posts .seenz-post {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .news-feed-item {
        flex: 1 1 100%; /* One item per row */
        max-width: 100%;
    }
	
}

/* Images */
.news-feed-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

/* Titles */
.news-feed-item h2 {
    font-size: 20px!important;
	text-align:left;
    margin: 15px 10px 10px;
}

.news-feed-item h2 a {
    text-decoration: none;
    color: #333;
}

.news-feed-item h2 a:hover {
    color: #0073aa; /* WordPress blue */
}

/* Description */
.news-feed-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 10px 15px;
    line-height: 1.5;
	text-align: left;
}

/* Button */
.news-feed-item .button {
    display: block;
    margin-left: 10px;
	width: 40%;
    padding: 9px 18px;
    background-color: #333; /* WordPress blue */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.news-feed-item .button:hover {
    background-color: #005b8a; /* Darker blue */
}







