/*
 Theme Name:   Astra Child 
 Description:  Astra Child Theme
 Author:       Kirby Capangpangan (Modifier) 
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/

/* Custom styles for Event Post Type */

body {
  background-color: #f7f5ef; /* Light beige background */
}
.event-template-default.single-event #content .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.event-hero-header {
  background-color: #2b3a4a; /* Dark blue-grey */
  background-image: url('https://members.laurencelameche.com/wp-content/uploads/2025/12/banner.png'); /* Placeholder image */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.event-hero-label {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase; 
}

.event-hero-title {
  font-size: 2.3rem;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  font-family: 'Cormorant Garamond', sans-serif;
}

.event-about-bar {
  background-color: #1a4d2e;
  padding: 5px 20px;
  margin: 10px auto 0px auto;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

.event-about-bar h2 {
  color: #fff !important;
  margin: 0;
  font-weight: 400;
  font-size: 24px;
}
.event-single-wrapper,
.event-content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.event-single-wrapper article {
  background: transparent !important;
}
.event-main-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.event-details-summary {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.event-details-summary h1,
.event-details-summary p {
  margin: 0;
  font-family: 'Cormorant Garamond', sans-serif;
}

.event-details-summary strong {
  color: #333;
}

.entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.entry-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.entry-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.entry-content ul li:before {
  content: '\2714'; /* Checkmark icon */
  color: #d4af37; /* Gold color */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.event-url-link,
.event-booking-link {
  text-align: center;
  margin-top: 20px;
}

.event-booking-button {
  display: inline-block;
  background-color: #d4af37; /* Gold color */
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.event-booking-button:hover {
  background-color: #c09f2d;
}

.add-to-calendar-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.calendar-link {
  display: flex;
  align-items: center;
  background-color: #d4af37; /* Gold color */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.calendar-link:hover {
  background-color: #c09f2d;
}

.calendar-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Placeholder icons - replace with actual Font Awesome or SVG later */
.google-icon {
  background-image: url('https://img.icons8.com/color/48/000000/google-calendar.png');
}

.ical-icon {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/ical.png');
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%); /* White icon */
}

.outlook-icon {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/outlook.png');
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%); /* White icon */
}

/* Basic responsiveness */
@media (max-width: 768px) {
  .event-about-bar,
  .event-main-content {
    width: 100%;
    padding: 20px;
  }

  .add-to-calendar-buttons {
    flex-direction: column;
    align-items: center;
  }
}
