/*
Theme Name: Event Hub
Theme URI: https://conferenceinc.net/
Author: Sreya Ray
Author URI: https://conferenceinc.net/
Description: A clean Bootstrap 5-based travel theme for Puri Dham
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conference-Inc
Tags: travel, bootstrap, responsive
*/

body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      background: #f9f9f9;
      color: #333;
    }

  header {
  background: #1e2a38;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  width: auto;
  height: 80px;
  object-fit: contain;
}

h5 {
  font-size: 18px;
}
p {
  line-height: 31px;
}

strong {
  font-weight: 600;
}
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
    /* NAVIGATION */
    nav {
  background: #111;
  color: white;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: none;
}

.nav-right {
  display: flex;
  gap: 15px;
  margin: 0 auto; /* Center horizontally */
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-left {
    display: block;
  }

  .nav-right {
    display: none;
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    justify-content: space-between;
  }
}

    /* Overlay & mobile menu */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 250px;
      height: 100%;
      background: #111;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 10;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      padding: 12px 0;
    }

    .close-btn {
      font-size: 24px;
      color: white;
      cursor: pointer;
      align-self: flex-end;
      margin-bottom: 20px;
    }

    /* RESPONSIVE BEHAVIOR */
    @media (max-width: 768px) {
      .nav-right {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }

    .hero {
  position: relative;
  background: url('https://conferenceinc.net/assets/images/conferencesInc-global-events.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 90px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 0;
}

.hero h1,
.hero input {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.1rem;
  margin: 0;
}

.hero input {
  padding: 12px;
  width: 70%;
  max-width: 400px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero input {
    width: 90%;
  }
}

    .adsense {
      text-align: center;
      padding: 20px;
      margin: 30px auto;
      width: 90%;
    }
	
	.site-intro {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.site-intro h2 {
  font-size: 1.8rem;
  color: #1e2a38;
  margin-bottom: 15px;
}

.site-intro p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}


    .categories, .recent-events, .popular-cities {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

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

    .card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .cta {
      background: #1e88e5;
      color: white;
      text-align: center;
      padding: 40px 20px;
    }

    .cta a {
      background: #fff;
      color: #1e88e5;
      padding: 12px 24px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
    }

    

.add-event-section {
  padding: 30px 0;
}

.add-event-form {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group.half {
  flex: 1 1 48%;
}

.btn-submit {
  background: #007BFF;
  color: #fff;
  padding: 12px 20px;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #0056b3;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .form-row .form-group.half {
    flex: 1 1 100%;
  }
}


.card-link {
  color: #333;
  text-decoration: none;
  line-height: 24px;
}

.view-all-wrapper {
  text-align: right;
  padding: 20px;
  margin-top: -10px;
}

.btn-view-all {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-view-all:hover {
  background-color: #0056b3;
}

.city-page {

  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.country-page {

  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.topic-page{
    background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.type-page {
     background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.all-events-page {
     background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.common-page {
     background-color: #f9f9f9;
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 20px;
}

.common-page p {
  line-height: 31px;
}

.inr-cont-list ul li {
  line-height: 26px;
}

.acc_content ul li {
  line-height: 26px;
  font-size: 16px;
}

.acc-title {
  font-weight: 600;
}

.event-detail-section {
    background-color: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.event-detail-section h1 {
  font-size: 24px;
  color: #333;
  line-height: 31px;
}
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 6px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.pagination a:hover {
  background-color: #469c3d;
  color: #fff;
  border-color: #469c3d;
}

.pagination a.active {
  background-color: #469c3d;
  color: white;
  font-weight: bold;
  pointer-events: none;
}

/* Optional enhancements */
.card-body label {
  font-weight: 600;
  color: #333;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-size: 0.95rem;
}

.card {
  border-radius: 12px;
}

.btn-primary {
  font-weight: 600;
  font-size: 16px;
}

.event-type-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 15px;
  margin-bottom: 8px;
}
.mt10 {
  margin-top: 10px;
}

/* Color-coding based on event type */
.event-type-label.conference {
  background-color: #007bff; /* Blue */
}

.event-type-label.expo {
  background-color: #28a745; /* Green */
}

.event-type-label.event {
  background-color: #6c757d; /* Grey */
}

.event-type-label.festival {
  background-color: #ffc107; /* Yellow */
  color: #000;
}

.event-type-label.webinar {
  background-color: #17a2b8; /* Teal */
}

.event-type-label.meetup {
  background-color: #0d3d44; /* Teal */
}

.event-type-label.summit {
  background-color: #673AB7; /* Teal */
}

.event-type-label.convention {
  background-color: #46680a; /* Teal */
}

.event-list {
  margin-top: 30px;
}

.event-item:hover {
  background: #f9f9f9;
  transition: 0.3s ease;
}

.event-title { font-size: 32px; color: #0b2447; margin-bottom: 20px; }
.event-info ul { list-style: none; padding: 0; }
.event-info ul li { margin-bottom: 10px; font-size: 16px; }
.event-info ul li strong { width: 180px; display: inline-block; color: #111; }
.event-description { margin-top: 10px; background: #f9f9f9; border-radius: 10px; }
.similar-events { margin-top: 50px; }
.similar-events h3 { margin-bottom: 20px; }
.event-list .event-item { margin-bottom: 20px; padding: 15px; border: 1px solid #eee; border-radius: 8px; background: #fff; }
.event-list .event-item h4 { margin-bottom: 5px; font-size: 18px;margin-bottom: 20px; }
.event-list .event-item p { margin: 2px 0; }
.event-list .event-item a {
  color: #333;
  text-decoration: none;
  margin-bottom: 26px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow-x: auto;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f4f6f9;
  font-weight: 600;
  color: #333;
}

tr:hover {
  background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
  table {
    font-size: 14px;
  }

  th, td {
    padding: 10px;
  }
}


.site-footer {
  background-color: #0c1826;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 250px;
  margin: 10px 20px 20px 0;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-subscribe-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
}

.footer-subscribe-form button {
  padding: 10px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}

.footer-subscribe-form button:hover {
  background-color: #0056b3;
}

.subscribe-msg {
  color: #00ff99;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.subscribe-info {
  font-size: 14px;
  color: #aaa;
}

.footer-bottom {
  padding-top: 20px;
  text-align: left;
  font-size: 14px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.contact-info-section .container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.contact-page-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  flex: 1 1 300px;
  text-align: left;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.contact-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-box a {
  color: #007bff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 50px;
  background: #fff3cd;
  color: #856404;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
}

.footer-copy {
  color: #bbb;
  border-top: 1px solid #bbb;
  padding-top: 14px;
  font-size: 14px;
}

.footer-blog-link {
  color: #bbb;
  text-decoration: none;
  font-weight: bold;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.news-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.news-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.news-title {
  font-size: 1.1rem;
  margin-top: 15px;
}

.news-title a {
  text-decoration: none;
  color: #222;
  line-height: 28px;
  font-weight: 600;
}

.news-title a:hover {
  color: #0056b3;
}

.news-meta {
  font-size: 0.875rem;
  color: #666;
  margin: 5px 0 10px;
}

.news-excerpt {
  font-size: 0.95rem;
  color: #333;
}

.read-more {
  margin-top: 10px;
  display: inline-block;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.related-posts .news-title a {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}
.related-posts .news-title a:hover {
  color: #0056b3;
}
.related-posts .news-excerpt {
  font-size: 0.9rem;
  color: #555;
}
.related-posts .read-more {
  font-weight: bold;
  color: #0056b3;
  text-decoration: none;
}
.related-posts .read-more:hover {
  text-decoration: underline;
}


.read-more:hover {
  text-decoration: underline;
}

#ajax-pagination button {
  cursor: pointer;
  padding: 6px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  background: #fff;
}

#ajax-pagination button:hover {
  background: #0056b3;
  color: white;
  border-color: #0056b3;
}

/* SINGLE & PAGE DESIGN */
.single-post-content, .page-content {
    max-width: 900px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.post-title, .page-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #222;
}

.post-featured img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 4px;
}

.post-tags {
  font-size: 0.95rem;
  color: #555;
}

.post-tags a {
  background: #f1f1f1;
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0 5px 5px 0;
  display: inline-block;
  text-decoration: none;
}

.post-tags a:hover {
  background: #0056b3;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .single-post, .page-content {
    padding: 0;
  }

  .post-title, .page-title {
    font-size: 1.5rem;
  }
}

.wp-block-heading {
  font-size: 20px;
  font-weight: 600 !important;
  margin: 26px auto;
  line-height: 30px;
}