/*
Theme Name: Awakening Love
Theme URI: https://example.com/
Author: Technostacks
Author URI: https://technostacks.com/
Description: A custom classic WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: awakening-love
*/
.about-hero img {
	max-width: 35%!important;
}

.woocommerce-account .button,
.woocommerce-account .woocommerce-Button {
    background-color: #424F440D!important;  /* Background */
    border: 1px solid #B6874280!important;  /* Border */
    color: #B68742!important;               /* Text color */
    padding: 10px 20px!important;           /* Optional: adjust padding */
    border-radius: 5px!important;           /* Optional: rounded corners */
    transition: all 0.3s ease!important;    /* Optional: smooth hover effect */
}

/* Main navigation container styling */
.woocommerce-MyAccount-navigation {
	background-color: #404F42; /* White background */
	border-radius: 12px; /* Rounded corners */
	padding: 10px; /* Padding around the whole menu */
	max-width: 260px;
	width: 100%;
	margin-bottom: 30px;
}

/* Remove default list styling */
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 5px; /* Space between menu items */
}

/* Individual list items */
.woocommerce-MyAccount-navigation ul li {
	margin: 0;
}

/* Styling for all navigation links */
.woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px 20px;
	text-decoration: none;
	color: #ffffff; /* Dark grey color for text */
	border-radius: 8px; /* Rounded corners for the link background */
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	border-left: 4px solid transparent; /* Placeholder for the active indicator */
}

/* Hover effect for non-active links */
.woocommerce-MyAccount-navigation ul li:not(.is-active) a:hover {
	background-color: #f5f5f5; /* Light grey background on hover */
	color: #111111;
}

/* --- The key part: Styling for the ACTIVE link --- */
.woocommerce-MyAccount-navigation ul li.is-active a {
	background-color: #ffffff; /* Light blue/purple background */
	color: #404F42; /* Darker blue/purple for the text */
	font-weight: 600; /* Bolder text */
	border-left: 4px solid #000000; /* The solid left border */
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 100%!important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 75%!important;
	margin-bottom: 30px;
}

/* Form container */
.rc-add-course-form {
	background-color: #f9f9f9;
	padding: 25px;
	border-radius: 10px;
	max-width: 600px;
	margin: 20px auto;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	font-family: Arial, sans-serif;
}

/* Form title */
.rc-form-title {
	text-align: center;
	font-size: 1.8em;
	margin-bottom: 20px;
	color: #333;
}

/* Form fields */
.rc-form-field {
	margin-bottom: 15px;
}

/* Inputs, textarea, select */
.rc-input, .rc-textarea, .rc-select {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	font-size: 1em;
	transition: border 0.3s, box-shadow 0.3s;
}

.rc-input:focus, .rc-textarea:focus, .rc-select:focus {
	border-color: #0073aa;
	box-shadow: 0 0 5px rgba(0,115,170,0.3);
	outline: none;
}

/* Textarea specific */
.rc-textarea {
	height: 120px;
	resize: vertical;
}

/* Submit button */
.rc-submit {
	background-color: #404F42 !important;
	color: white!important;
	border: none;
	padding: 16px 30px !important;
	border-radius: 6px!important;
	cursor: pointer;
	font-size: 1em;
	transition: background 0.3s;
}

.rc-submit:hover {
	background-color: #005f8d;
}


.rc-my-classes-title {
	font-size: 40px;
	text-align: center;
	font-weight: bolder ;
	margin-bottom: 5px;
	color: #404F42;
}
.rc-title-separator {
	border: 0;
	height: 2px;
	background: black;
	margin-bottom: 20px;
	width: 100%;
}
.rc-add-course-button {
	display: block;
	margin: 0 auto 20px auto;
}
.rc-course-tabs {
	margin-top: 35px;
	margin-bottom: 25px;
	margin-left: -4px;
	text-align: left;
}
.rc-tab-button {
	color: #404F42;
	background: #f5f5f5;
	border: 1px solid #ccc;
	padding: 8px 20px;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
}
.rc-tab-button.active {
	background: #fff;
	border-bottom: 2px solid #fff;
	font-weight: bold;
}
.rc-tab-content {
	display: none;
}
.rc-tab-content.active {
	display: block;
}

.rc-my-classes-title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
}

.rc-title-separator {
	border: 0;
	height: 2px;
	background: black;
	margin-bottom: 20px;
	width: 100%;
}

.rc-add-course-button {
	display: block;
	margin: 0 auto 20px auto;
}

.rc-course-tabs {
	margin-top: 35px;
	margin-bottom: 25px;
	margin-left: -4px;
	text-align: left;
}

.rc-tab-button {
	background: #f5f5f5;
	border: 1px solid #ccc;
	padding: 8px 20px;
	margin: 0 5px -1px 5px;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	font-weight: normal;
}

.rc-tab-button.active {
	background: #fff;
	border-bottom: 2px solid #fff;
	font-weight: bold;
}

.rc-tab-content.rc-courses-container {
	border: 1px solid #000;
	padding: 15px;
	border-radius: 0 5px 5px 5px;
	margin-top: -1px;
	background-color: #fff;
}

.rc-course-materials-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    border-bottom: 4px solid #000000;
}
.rc-course-title {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.rc-materials-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto 30px;
}
.rc-materials-list li {
    background-color: #404F42;
    color: #ffffff;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
}
.rc-materials-list li:hover {
    background-color: #2e3b33;
}
.rc-materials-list li a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.rc-materials-list li svg {
    margin-left: 10px;
    fill: #ffffff;
    width: 20px;
    height: 20px;
}

.my_account_orders, .my-course-btn, .course-heading {
	margin-top: 20px!important;
}

.course-heading {
	color: #404F42;
	font-weight: bolder;
	font-size: 25px;
}


/* Edit button - green background, white text */
.woocommerce .rc-tab-content .rc-edit-course-button {
    background-color: #28a745; /* green */
    color: #ffffff; /* white text */
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.rc-edit-course-button:hover {
    background-color: #218838; /* darker green on hover */
}

/* Delete button - red background, white text */
.woocommerce .rc-tab-content .rc-delete-course-button {
    background-color: #dc3545; /* red */
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.woocommerce .rc-tab-content .rc-delete-course-button:hover {
    background-color: #c82333; /* darker red on hover */
}

/* Participants button - black background, white text */
.woocommerce .rc-tab-content .rc-participants-button {
    background-color: #000000; /* black */
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.woocommerce .rc-tab-content .rc-participants-button:hover {
    background-color: #333333; /* slightly lighter black on hover */
}


.card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card.active {
  border-color: #C9A646; /* golden highlight */
}

#expanded-card {
  border: 2px solid #C9A646;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gallery-hero {
  background-image: url("../imgs/gallery-hero.jpg");
}

.about-hero {
  background-image: url("../imgs/about-hero.jpg");
}

.heal-banner {
  background-image: url("../imgs/heal-banner-image.jpg");
}

.romshri-hero {
  background-image: url("../imgs/romshri-hero.jpg");
}

.seminar-cta {
  background-image: url("../imgs/seminar-page-cta.jpg");
}

.seminar-hero {
  background-image: url("../imgs/seminar.jpg");
}

.thetaHealing-hero {
  background-image: url("../imgs/thetahealing-hero.jpg");
}

.upcoming-course-hero {
  background-image: url("../imgs/upcoming-course-hero.jpg");
}

.rotate-180 {
  transform: rotate(180deg);
}
.accordion-active {
  border-top: 4px solid #404F42;
}
/* Animation for accordion */
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-body.show {
  max-height: 500px; /* large enough for content */
  opacity: 1;
}

/* Hide scrollbar for slider */
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}
.scrollbar-hide {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.wrapper .page-content h2 {
    color: #404F42;
    font-weight: 600;
    font-size: 28px;
}

.wrapper .page-content h3 {
    color: #404F42;
    font-weight: 500;
    font-size: 24px;
}

.wrapper .page-content h4 {
    color: #404F42;
    font-weight: 300;
    font-size: 20px;
}

.wrapper .page-content h5 {
    color: #404F42;
    font-weight: 300;
    font-size: 18px;
}

.wrapper .page-content p {
    color: #000000;
    font-weight: 300;
    font-size: 16px;
}

/* Universal glass/frosted effect for all UberMenu submenus */
.ubermenu .ubermenu-submenu {
    background-color: rgba(0, 0, 0, 0.8)!important; /* semi-transparent background */
    backdrop-filter: blur(10px)!important;                /* frosted blur effect */
    -webkit-backdrop-filter: blur(10px)!important;       /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.3)!important; /* subtle border for depth */
    border-radius: 8px!important;                         /* smooth rounded corners */
}

.glass-bg {
	background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-image {
	float: right;
	margin-left: 20px;
    margin-bottom: 20px;
}

.gallery-images-bg {
	background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.single-glass-bg {
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-content ul {
  list-style-type: disc!important;
  padding-left: 1.5rem!important;
  margin-bottom: 1rem!important;
}

.course-content li {
  margin-bottom: 0.5rem!important;
}

/* WooCommerce Logout Button Styling */
.woocommerce-MyAccount-navigation-link--customer-logout a,
.menu-item-logout a {
  display: inline-block;
  background-color: #e60000; /* Red button color */
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.menu-item-logout a:hover {
  background-color: #ff4d4d!important; /* Darker red on hover */
  transform: translateY(-1px)!important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15)!important;
}

.blog-content h2 {
  font-size: 30px;
  color: #000000;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 40px;
  color: #000000;
  font-weight: 500;
}

.blog-content h4 {
  font-size: 30px;
  color: #000000;
  font-weight: 400;
}

.blog-content h6 {
  font-size: 20px;
  color: #000000;
  font-weight: 400;
}

.blog-content p {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Lists */
.blog-content ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #333;
}

.heal-sub-page-content {
	display: flex;
	gap: 10px;
}

.sub-content {
	background-color: #B68742;
	color: #ffffff!important;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 10px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); /* black drop shadow */
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Overlay styling */
.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6), transparent);
  padding: 1rem;
  transition: all 0.5s ease-in-out;
  max-height: 6rem; /* default height for name + 2 lines */
  overflow: hidden;
}

/* Text clamping for 2 lines */
.team-overlay .team-info {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

/* Hover effect — overlay expands fully */
.team-card:hover .team-overlay {
  max-height: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
  overflow-y: auto; /* make scrollable if content > image */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255,255,255,0.5) transparent;
}

/* Optional: Style scrollbars for Chrome, Edge, Safari */
.team-card:hover .team-overlay::-webkit-scrollbar {
  width: 6px;
}
.team-card:hover .team-overlay::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}
.team-card:hover .team-overlay::-webkit-scrollbar-track {
  background: transparent;
}

/* On hover, unclamp text */
.team-card:hover .team-info {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.team-name {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  margin-bottom: 0.25rem;
}


/* =========================================
   TWO COLUMN CART LAYOUT (DESKTOP)
========================================= */

.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
  align-items: start;
  max-width: 100%;
  overflow-x: hidden;
}

/* Left – Products */
.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1 / 2;
  min-width: 0;
  overflow: hidden;
}

/* Right – Cart totals */
.woocommerce-cart .cart-collaterals {
  grid-column: 2 / 3;
  min-width: 0;
  overflow: hidden;
}

/* =========================================
   PRODUCT TABLE STYLING
========================================= */

.woocommerce-cart table.cart {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 15px;
  background: transparent;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
  word-break: break-word;
  padding: 20px 12px;
  vertical-align: middle;
}

/* Product images */
.woocommerce-cart table.cart img {
  width: 70px;
  border-radius: 6px;
}

/* =========================================
   REMOVE ITEM BUTTON (FIXED & CLEAN)
========================================= */

.woocommerce-cart .product-remove {
  width: 36px;
  text-align: center;
}

.woocommerce-cart .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0 !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: 0.3s ease;
}

.woocommerce-cart .product-remove a:hover {
  background: #444 !important;
}

/* =========================================
   COUPON & UPDATE CART BUTTONS
========================================= */

.woocommerce-cart button[name="apply_coupon"] {
  background-color: black !important;
  color: white !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.woocommerce-cart button[name="apply_coupon"]:hover {
  opacity: 0.85;
}

.woocommerce-cart button[name="update_cart"] {
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 600;
}

/* =========================================
   CART TOTALS – TABLE STYLE (RIGHT SIDE)
========================================= */

.woocommerce-cart .cart_totals {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
  padding: 16px;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
}

.woocommerce-cart .cart_totals th {
  text-align: left;
  font-weight: 600;
}

.woocommerce-cart .cart_totals td {
  text-align: right;
  font-weight: 600;
}

.woocommerce-cart .cart_totals tr:last-child th,
.woocommerce-cart .cart_totals tr:last-child td {
  border-bottom: none;
}

/* =========================================
   PROCEED TO CHECKOUT BUTTON
========================================= */

.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 20px;
}

.woocommerce-cart .wc-proceed-to-checkout a {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px !important;
  border-radius: 6px;
  background-color: #404F42 !important;
  color: #ffffff !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a:hover {
  opacity: 0.9;
}

/* =========================================
   SAFETY: REMOVE HORIZONTAL SCROLL
========================================= */

body.woocommerce-cart {
  overflow-x: hidden;
}

/* =========================================
   MOBILE RESPONSIVE FIX
========================================= */

@media (max-width: 768px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    grid-column: auto;
  }

  .woocommerce-cart .cart_totals {
    margin-top: 30px;
  }
}

/* ===============================
   FORCE CHECKOUT 2-COLUMN LAYOUT
================================ */

/* Make checkout form grid */
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "billing order"
    "billing order";
  gap: 50px;
  width: 100%;
}

/* LEFT — Billing + Additional info */
.woocommerce-checkout #customer_details {
  grid-area: billing;
}

/* RIGHT — Order */
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-area: order;
}

#order_review_heading {
  visibility: hidden;
}

/* Stack additional info inside billing */
.woocommerce-checkout .col2-set {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Kill WooCommerce floats */
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  float: none !important;
  width: 100% !important;
}

/* Order box styling */
.woocommerce-checkout #order_review {
  margin-top: 20px;
  padding: 24px;
  border-radius: 12px;
}

/* Place order button */
.woocommerce-checkout #place_order {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #404F42 !important;
  color: #fff !important;
  border: none;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "billing"
      "order";
  }
}