/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.aihee-main-wrapper.aihee-12-16:not(.layout-12) .aihee-hover-12, .aihee-main-wrapper.aihee-12-16:not(.layout-12) .aihee-bg-img-12:after {
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,#000000 100%)!important;
}
.aihee-main-wrapper.aihee-12-16.layout-17:hover .aihee-hover-12, .aihee-main-wrapper.aihee-12-16.layout-17:hover .aihee-bg-img-12:after {
    top: 39%!important;
}
.aihee-main-wrapper.aihee-12-16.layout-17 .aihee-hover-12, .aihee-main-wrapper.aihee-12-16.layout-17 .aihee-bg-img-12:after {
    align-items: start!important;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 20px;
}

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
    }
}

@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    }
}


.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.activity-bg {
  background-size: cover;
  background-position: center;
  height: 380px;
  position: relative;
  transition: transform 0.3s ease;
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding: 20px;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.activity-card:hover .activity-overlay {
  opacity: 1;
}

.activity-button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.activity-button:hover {
  background: #cc5200;
  color:#fff;
}

.activity-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.activity-row.reverse {
  flex-direction: row-reverse;
}

.activity-text {
  flex: 1 1 50%;
}

.activity-text h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 20px;
}

.activity-text p,
.activity-text ul {
  font-size: 1em;
  line-height: 1.7;
  color: #333;
}

.activity-text ul {
  padding-left: 20px;
}

.activity-text ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.activity-image {
  flex: 1 1 50%;
}

.activity-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}


.blog-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.blog-card {
    /* border: 1px solid #eee; */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
/*     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); */
}

.blog-card-img {
    width: 100%;
    height: 470px!important;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 20px 0;
}

.blog-card-meta {
    color: orange;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.blog-card-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.blog-card-button {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 26px;
    font-weight: 700;
    padding: 3px 20px;
    text-transform: uppercase;
    margin-top: 10px;
    border: 4px solid rgba(0, 0, 0, .2);
    color: #000;
}

.blog-category-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-category-menu li {
    margin-bottom: 12px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ccc;
}

.blog-category-menu li a {
    text-decoration: none;
    color: #3a3737;
    font-size: 16px;
    /* font-weight: 500; */
    display: block;
    transition: color 0.3s;
}

.blog-category-menu li a:hover {
    color: #e67e22; /* optional: hover color */
}

ul, ol {
    list-style-position: outside;
    padding-left: 20px;
}

/* .post-main p:first-of-type::first-letter {
  font-size: 3.5em;
  font-weight: 500;
  float: left;
  line-height: 1;
  padding-right: 10px;
  padding-top: 6px;
  color: #444;	
} */

.numbered-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.post-thumbnail {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.number-circle {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #f44336;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    z-index: 2;

}

.post-title a {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
}

.post-separator {
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}

/*  activity Adjustments */

.activity-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.activity-block {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  z-index: 1;
}
.activity-block:hover {
  transform: scale(1.02);
}

.activity-overlay5 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.activity-block:hover .activity-overlay5 {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease-in-out, opacity 0.4s;
  opacity: 0;
}

.activity-block:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.activity-title {
  font-size: 1.4em;
  margin-bottom: 8px;
  font-weight: bold;
}

.activity-excerpt {
  font-size: 0.95em;
  margin-bottom: 14px;
  padding: 0 15px;
}

.activity-button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  padding: 10px 22px;
  border: 2px solid #ff4d00;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.activity-button:hover {
  background-color: #ff4d00;
  color: #000;
}

.nav-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.nav-list li {
  border-bottom: 1px solid #ccc;
}

.nav-list li a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #000;
}

.nav-list li a:hover,
.nav-list li a:focus {
  color: #000;
}

.nav-list li.current-menu-item > a {
  font-weight: bold;
}
/*=========== accommodation-grid ===========*/
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.accommodation-card {
  padding: 0px;
  transition: transform 0.3s ease;
}
.accommodation-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


.accommodation-card img{
	border-radius:15px;
	height: 300px;
}

.accommodation-card:hover {
  transform: translateY(-5px);
}

.accommodation-card h3 {
 font-size: 20px;
 line-height: 30px;
 margin-bottom: 15px;
 color:#000000;
 text-transform:uppercase; 
 font-weight:700;
}

.accommodation-image {
  width: 100%;
  border-radius: 15px;
}
.accommodation-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
}

.meta-item i {
  color: #f15a24; /* orange */
}














/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
    .blog-card-img {
        height: 300px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-content {
        padding: 15px;
    }
}





