 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Merriweather", serif;
 }

 body {

   font-family: "Merriweather", serif;
 }

 a,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 .btn,
 input {
   font-family: "Merriweather", serif;
   color: #000
 }


 /* Header */
 header {
   position: fixed;
   top: 0;
   width: 100%;
   background: white;
   padding: 12px 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   z-index: 1000;
 }

 header h1 {
   color: #20a293;
   font-size: 20px;
 }

 .btn {
   padding: 12px 25px;
   border: none;
   border-radius: 30px;
   cursor: pointer;
   margin: 0;
 }

 .btn-primary {
   background: #20a293;
   color: white;
   text-decoration: none;
 }

 .btn-secondary {
   background: white;
   color: #20a293;

 }


 a.btn-secondary {
   padding: 12px 0
 }

 /* Hero */
 .hero {

   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: white;
   padding: 20px;
 }

 .hero-content {
   background: rgba(0, 0, 0, 0.5);
   padding: 30px;
   border-radius: 16px;
 }

 .hero h2 {
   font-size: 36px;
   margin-bottom: 10px;
   color: #fff
 }

 .hero p {
   margin-bottom: 20px;
   color: #fff
 }

 /* Section Wrapper for full-width background */
 .section-wrapper {
   width: 100%;
   padding: 60px 0 0 0;
   /* vertical spacing */
 }

 .section-wrapper:nth-of-type(odd) {
   background: #ffffff;
 }

 .section-wrapper:nth-of-type(even) {
   background: #fff;
 }

 /* Section Content */
 .section-wrapper,
 .section-wrapper-bottom .section {
   max-width: 1320px;
   margin: auto;

 }

 .section-wrapper-bottom {
   padding: 10px;
 }

 .section-wrapper-bottom .section {
   padding: 60px 0
 }

 .section {
   padding: 0px 0px 60px 0;
 }

 .section-wrapper {
   display: flex;
   flex-wrap: wrap;
   /* allows stacking on small screens */
 }

 .left-section {
   width: 72%;
   padding: 10px;
 }

 .right-section {
   width: 28%;
   padding: 10px;
 }

 footer p {
   color: #fff
 }

 /* Responsive: stack on smaller screens */
 @media (max-width: 768px) {

   .left-section,
   .right-section {
     width: 100%;
   }
 }

 .section h3 {
   margin-bottom: 10px;
   font-size: 24px;
 }

 .section p.subtitle {
   margin-bottom: 30px;
   color: #666;
 }

 /* Grid Layout */
 .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 8px;
 }

 /* Card Styles */
 .card {
   position: relative;
   height: 200px;
   border-radius: 16px;
   overflow: hidden;
   color: white;
   cursor: pointer;
 }

 .card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.4s;
 }

 .card:hover img {
   transform: scale(1.1);
 }

 .overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
   padding: 15px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
 }

 .overlay h4 {
   font-size: 18px;
   margin-bottom: 5px;
   color: #fff
 }

 .overlay small {
   font-size: 12px;
   opacity: 0.9;
   color: #fff
 }

 .overlay p {
   font-size: 14px;
   margin-top: 5px;
   opacity: 0.85;
   color: #fff;
 }

 /* Search Bar */
 .search-bar {

   background: white;
   width: 30%;
   z-index: 999;
 }

 header a {
   display: flex;
   justify-content: center;
   align-items: center;
   text-decoration: none;
   font-size: 20px;
   font-weight: 700;
   color: #287f7b
 }

 header a img {
   width: 50px
 }

 .search-bar input {
   width: 100%;
   padding: 12px;
   border-radius: 30px;
   border: 1px solid #ddd;
 }

 /* News Section */
 .news-list {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 8px;
 }

 .news-item {
   background: #ffffff;
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
 }

 .news-item h4 {
   margin-bottom: 5px;
   color: #20a293;
 }

 .news-item small {
   display: block;
   margin-bottom: 10px;
   color: #666;
   font-size: 13px;
 }

 .news-item p {
   font-size: 14px;
   color: #333;
   line-height: 1.5;
   margin-bottom: 10px;
 }

 .news-item a {
   text-decoration: none;
   font-weight: 500;
   display: inline-block;
   color: #20a293;
 }

 /* Event Calendar */
 .calendar-container {
   display: grid;
   grid-template-columns: 1fr 1fr;

   gap: 1rem;
   width: 100%;
   box-sizing: border-box;
 }

 .event-card {
   display: flex;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
   overflow: hidden;
 }

 .event-date {
   background: #20a293;
   color: #fff;
   padding: 15px 20px;
   text-align: center;
   min-width: 70px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }

 .event-date .day {
   font-size: 20px;
   font-weight: 700;
 }

 .event-date .month {
   font-size: 12px;
   text-transform: uppercase;
   margin-top: 3px;
 }

 .event-info {
   padding: 15px 20px;
   flex: 1;
 }

 .event-info h4 {
   margin: 0 0 5px;
   color: #3173ac;
   font-size: 16px;
 }

 .event-info p {
   margin: 0 0 10px;
   font-size: 14px;
   color: #333;
 }

 .event-info a {
   font-weight: 500;
   text-decoration: none;
   color: #20a293;
 }

 .vertical-images-container {
   border: 1px solid #e7e7e7;
   padding: 10px;
   border-radius: 10px;
 }

 .vertical-images-container h2 {
   font-size: 24px;
   margin: 15px 0;
   text-align: center;

 }

 .vertical-image-item a {
   display: block;
   width: 100%;
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 8px;
 }

 /* vertical carousel */
 .carousel-wrapper {
   position: relative;
   overflow: hidden;

   background: #f9fafb;
 }

 .carousel-container {
   overflow: hidden;
   position: relative;
 }

 .carousel-items {
   display: flex;
   flex-direction: column;
   transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 /* Carousel Item */
 .carousel-item {
   flex-shrink: 0;
   margin-bottom: 8px;

 }

 /* Card Styles */
 .card {
   background: white;
   border-radius: 8px;
   transition: all 0.3s ease;
   cursor: pointer;
   border: 1px solid #dfdfdf
 }

 .card:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
 }

 .card-content {
   display: flex;
   gap: 5px;
   padding: 10px;
 }

 .card-image {
   flex-shrink: 0;
 }

 .card-image img {
   width: 120px;
   height: 120px;
   object-fit: cover;
   border-radius: 8px;
   display: block;
 }

 .card-text {
   flex: 1;
 }

 .card-title {
   font-size: 15px;
   font-weight: 700;
   color: #1f2937;
   margin-bottom: 8px;
 }

 .card-address {
   font-size: 14px;
   font-weight: 400;
   color: #4b5563;
   margin-bottom: 8px;
 }

 .card-price {
   font-size: 14px;
   font-weight: 400;
   color: #4b5563;
 }

 /* Buttons */
 .carousel-buttons {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin: 15px 0;
 }

 .btn-prev,
 .btn-next,
 .btn-autoplay {
   background-color: #3b82f6;
   color: white;
   padding: 8px 16px;
   border-radius: 8px;
   border: none;
   cursor: pointer;
   font-size: 14px;
   transition: background-color 0.3s;
 }

 .btn-prev:hover,
 .btn-next:hover,
 .btn-autoplay:hover {
   background-color: #2563eb;
 }

 .btn-autoplay {
   background-color: #10b981;
 }

 .btn-autoplay:hover {
   background-color: #059669;
 }

 /* Static Images */
 .static-images {
   margin-bottom: 24px;
 }

 .vertical-image-item {
   margin-bottom: 12px;
 }

 .vertical-image-item:last-child {
   margin-bottom: 0;
 }

 .owl-nav {
   display: none
 }

 /* Responsive */
 @media (max-width: 768px) {
   .carousel-item {
     margin-bottom: 8px;
   }

   .card-image img {
     width: 100px;
     height: 100px;
   }

   .card-title {
     font-size: 14px;
   }

   .card-address,
   .card-price {
     font-size: 12px;
   }

   .calendar-container {
     grid-template-columns: 1fr;
   }


 }

 .association-row {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
 }

 .association-row .logo-box {
   width: 260px;
   height: 150px;
   margin-right: 25px;
   padding: 15px;
 }

 .association-row .logo-box img {
   width: 100%;

   object-fit: contain;
 }

 .logo-box {

   height: 150px;
   flex-shrink: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
   margin: 3px;
 }

 .logo-box a {
   display: block;
   padding: 10px;
   text-decoration: none;
   text-align: center;
 }

 .logo-box img {
   object-fit: contain;
 }


 .carousel-container {
   scroll-behavior: smooth;
   -webkit-overflow-scrolling: touch;
 }

 .carousel-container::-webkit-scrollbar {
   height: 8px;
 }

 .carousel-container::-webkit-scrollbar-thumb {
   background: rgba(0, 0, 0, 0.2);
   border-radius: 4px;
 }

 .carousel-container::-webkit-scrollbar-track {
   background: transparent;
 }

 .vertical-images-container {
   margin-bottom: 10px
 }

 .vertical-image-item {
   margin-bottom: 5px;
 }

 /* .item {
     margin: 10px 10px 0px 10px;
 } */

 .vertical-image-item:last-child {
   margin-bottom: 0
 }

 .vertical-carousel-items .item>div {
   border: 1px solid #dfdfdf
 }

 .hero h1 {
   font-size: 32px;

   padding: 15px;
   border-radius: 10px;
   color: #fff
 }

 .category-bar {
   margin: 30px 0;
 }

 .inner-section {
   max-width: 1320px;
   margin: auto;
   padding: 30px 0px;
   display: flex;
   flex-wrap: wrap;

 }

 h3 {
   margin-bottom: 10px;
 }

 .subtitle {
   color: #666;
   margin-bottom: 20px;
 }

 /* CATEGORY BUTTONS */
 .category-bar {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .category-btn {
   padding: 8px 14px;
   border-radius: 20px;
   border: 1px solid #ddd;
   cursor: pointer;
   background: #fff;
   font-size: 13px;
 }

 .category-btn.active {
   background: #20a293;
   color: #fff;
   border-color: #20a293;
 }

 /* GRID */
 .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 20px;
 }

 .card {
   height: 180px;
   border-radius: 14px;
   overflow: hidden;
   position: relative;
   color: #fff;
   cursor: pointer;
 }

 .card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.3s;
 }

 .card:hover img {
   transform: scale(1.1);
 }

 .overlay {
   position: absolute;
   bottom: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
   padding: 12px;
   width: 100%;
 }

 .overlay h4 {
   font-size: 15px;
 }

 .overlay p {
   font-size: 12px;
   opacity: 0.8;
 }

 .mb {
   margin-bottom: 20px;
 }

 .mt {
   margin-top: 30px
 }

 #map {
   height: 400px;
   border-radius: 12px;
   margin: 20px 0;
 }

 .grey-bg .section-wrapper {
   padding: 30px 10px;
 }

 .grey-bg .section-wrapper p {
   margin-bottom: 0;
   line-height: 30px;
   font-size: 18px;

 }

 .card-2 img {
   border-radius: 8px 8px 0 0
 }

 .card-image {
   height: 140px;
 }

 .card-2 h4 {
   text-align: center;
   padding: 5px;
 }

 .hotel-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 15px;
   margin-top: 15px;
 }

 .rating {
   margin: 5px 0 0 0
 }


 /* Force 4 cards on desktop */
 @media(min-width:1024px) {
   .grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 @media (max-width: 768px) {
   .event-card {
     flex-direction: column;
   }

   .event-date {
     min-width: 100%;
     flex-direction: row;
     justify-content: center;
     padding: 10px 0;
   }

   .association-row {
     flex-direction: column;
     align-items: flex-start;
   }

   .association-row .logo-box {
     margin-bottom: 10px;
   }

   header {
     padding: 12px 10px;
   }

   header a {
     width: 50%;
     font-size: 15px;
   }

   .search-bar {
     width: 48%
   }

   .section-wrapper {
     padding: 20px 0 0 0
   }

   .left-section .section {
     padding: 20px 0 0 0
   }

   .section-wrapper-bottom .section {
     padding: 10px 0 0 0
   }

   .section-wrapper-bottom {
     margin-top: 20px;
   }

   .zero {
     margin-top: 0;
     padding-top: 0
   }



 }

 /* Footer */
 footer {
   background: #1c2b36;
   color: white;
   padding: 30px;
   text-align: center;
 }