body, html {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.section-title {
	font-family: 'Cinzel', serif !important;
	color: #6b5327 !important;
	font-size: 2.5rem !important;
	position: relative;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 1.2rem !important;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #c7a24a;
	border-radius: 2px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -10px;
	transition: width 0.3s;
}

.section-title:hover::after {
	width: 100px;
}

.contact-form .form-control {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

.contact-form .btn {
	font-weight: 500;
	letter-spacing: 0.3px;
}

.contact-info-item h5 {
	font-weight: 500;
	letter-spacing: -0.3px;
}

.contact-info-item p {
	font-weight: 400;
}

.navbar-brand {
	font-weight: 600;
	letter-spacing: -0.5px;
}

.nav-link {
	font-weight: 500;
}

.lead {
	font-weight: 400;
	letter-spacing: -0.2px;
}

.hero-section {
	background: url('../img/a.webp') no-repeat center center/cover;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: white;
	text-align: center;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

h1 {
	font-size: 3rem;
	font-weight: bold;
}

@media (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}
}

.fade-in {
	animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.wave {
	margin-top: -5px;
	line-height: 0;
}

.wave svg {
	display: block;
	width: 100%;
	height: 100px;
}

.next-section {
	background-color: #ffffff;
	padding: 60px 20px;
	text-align: center;
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	margin-right: 15px;
}

.navbar-dark .navbar-nav .nav-link:hover {
	color: #f8f9fa;
}

.navbar {
	z-index: 10;
	padding: 1.2rem 0;
	transition: all 0.4s ease;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(33, 37, 41, 0.95)) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
	padding: 0.8rem 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.98), rgba(33, 37, 41, 0.98)) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
	font-weight: 700;
	letter-spacing: -0.5px;
	font-size: 1.6rem;
	color: #fff !important;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-brand:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

.nav-link {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9) !important;
	padding: 0.7rem 1.2rem !important;
	margin: 0 0.3rem;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 8px;
	overflow: hidden;
}

.nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: -1;
}

.nav-link:hover {
	color: #fff !important;
	transform: translateY(-1px);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link:hover::before {
	opacity: 1;
}

.main-nav-link.active {
  background-color: #fef9c3; /* Tailwind yellow-100 */
  color: #f59e0b !important; /* Tailwind yellow-500 */
  font-weight: bold;
  position: relative;
  border-radius: 1rem;
}
.main-nav-link.active svg {
  color: #f59e0b !important;
  stroke: #f59e0b !important;
}
.main-nav-link.active::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: #f59e0b;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.navbar-toggler {
	border: none;
	padding: 0.7rem;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler:hover {
	background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
	background-image: none;
	position: relative;
	width: 24px;
	height: 2px;
	background-color: #fff;
	display: inline-block;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler-icon::after {
	bottom: -8px;
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		background: linear-gradient(to right, rgba(0, 0, 0, 0.98), rgba(33, 37, 41, 0.98));
		padding: 1rem;
		border-radius: 12px;
		margin-top: 1rem;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	}

	.nav-link {
		padding: 1rem 1.2rem !important;
		margin: 0.3rem 0;
	}

	.nav-link::before {
		display: none;
	}

	.nav-link:hover {
		background: rgba(255, 255, 255, 0.1);
	}
}

.lead {
	font-weight: 400;
	letter-spacing: -0.2px;
}

.parallax-section {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.about-section {
	background: url('../img/b.webp') no-repeat center center/cover;
	background-attachment: fixed;
	position: relative;
	padding: 80px 0;
}

.about-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	z-index: 1;
}

.about-content {
	position: relative;
	z-index: 2;
}

.about-image {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	object-fit: cover;
}

.about-text {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.package-section {
	background: url('../img/c.jpeg') no-repeat center center/cover;
	background-attachment: fixed;
	position: relative;
	padding: 100px 0;
}

.package-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 1;
}

.package-content {
	position: relative;
	z-index: 2;
}

.package-title {
	text-align: center;
	margin-bottom: 60px;
}

.package-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #2d2d2d;
}

.package-title p {
	color: #666;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.package-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	height: 100%;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.package-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.package-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.package-card:hover::before {
	transform: scaleX(1);
}

.package-card.popular {
	border: 2px solid #0d6efd;
}

.package-card.popular::before {
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	transform: scaleX(1);
}

.package-badge {
	position: absolute;
	top: 20px;
	right: -35px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	color: white;
	padding: 8px 40px;
	transform: rotate(45deg);
	font-size: 0.9rem;
	font-weight: 500;
}

.package-header {
	text-align: center;
	margin-bottom: 30px;
}

.package-name {
	font-size: 1.8rem;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 15px;
}

.package-price {
	font-size: 3rem;
	font-weight: 700;
	color: #0d6efd;
	margin-bottom: 20px;
}

.package-price span {
	font-size: 1rem;
	font-weight: 400;
	color: #666;
}

.package-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.package-features li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: #666;
	display: flex;
	align-items: center;
}

.package-features li:last-child {
	border-bottom: none;
}

.package-features li i {
	color: #0d6efd;
	margin-right: 10px;
	font-size: 1.1rem;
}

.package-button {
	display: block;
	width: 100%;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
}

.package-button.primary {
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	color: white;
	border: none;
}

.package-button.secondary {
	background: transparent;
	color: #0d6efd;
	border: 2px solid #0d6efd;
}

.package-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.package-button.primary:hover {
	filter: brightness(1.05);
}

.package-button.secondary:hover {
	background: rgba(13, 110, 253, 0.1);
}

.contact-section {
	background: url('../img/c.jpeg') no-repeat center center/cover;
	background-attachment: fixed;
	position: relative;
	padding: 100px 0;
}

.contact-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 1;
}

.contact-content {
	position: relative;
	z-index: 2;
}

.contact-title {
	text-align: center;
	margin-bottom: 60px;
}

.contact-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #2d2d2d;
}

.contact-title p {
	color: #666;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.contact-card h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.contact-card h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	border-radius: 2px;
}

.contact-form .form-floating {
	margin-bottom: 20px;
}

.contact-form .form-control {
	box-shadow: 0 1px 6px #0001;
	padding: 1rem 1.2rem;
	border-radius: 12px;
	border: 1.5px solid #e5e7eb;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control:focus {
	border-color: #c7a24a;
	box-shadow: 0 2px 12px #c7a24a33;
}

.contact-form .form-floating label {
	padding: 15px;
	color: #666;
}

.contact-form .btn {
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: 10px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	border: none;
	color: white;
	transition: all 0.3s ease;
	width: 100%;
}

.contact-form .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
	filter: brightness(1.05);
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	transform: translateX(5px);
}

.contact-info-item .icon-box {
	width: 50px;
	height: 50px;
	background: rgba(13, 110, 253, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease;
}

.contact-info-item:hover .icon-box {
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

.contact-info-item:hover .icon-box i {
	color: white;
}

.contact-info-item .icon-box i {
	font-size: 1.5rem;
	color: #0d6efd;
	transition: all 0.3s ease;
}

.contact-info-item .content h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 5px;
}

.contact-info-item .content p {
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.contact-info-item .content a {
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-info-item .content a:hover {
	color: #0d6efd;
}

.footer {
	background: url('../img/c.jpeg') no-repeat center center/cover;
	background-attachment: fixed;
	color: #fff;
	padding: 80px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
	z-index: 1;
}

.footer .container {
	position: relative;
	z-index: 2;
}

.footer h5 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

.footer p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 15px;
}

.footer-links a::before {
	content: '→';
	position: absolute;
	left: 0;
	opacity: 0;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
	transform: translateX(5px);
}

.footer-links a:hover::before {
	opacity: 1;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.2rem;
	transition: transform 0.2s, box-shadow 0.2s;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
	transform: scale(1.15);
	box-shadow: 0 2px 12px #0dcaf055;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	margin-top: 50px;
}

.footer-bottom p {
	margin: 0;
	text-align: center;
}

.newsletter-form {
	position: relative;
	margin-top: 20px;
}

.newsletter-form input {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	color: #fff;
	width: 100%;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
	position: absolute;
	right: 5px;
	top: 5px;
	background: linear-gradient(90deg, #0d6efd, #0dcaf0);
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	color: #fff;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	transform: translateX(3px);
}

.contact-info-footer {
	margin-top: 20px;
}

.contact-info-footer p {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info-footer i {
	margin-right: 10px;
	color: #0d6efd;
}

.features-section {
	padding: 80px 0;
	background: #fff;
}

.features-title {
	text-align: center;
	margin-bottom: 60px;
}

.features-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 15px;
}

.features-title p {
	color: #666;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.feature-card {
	background: #fff;
	padding: 30px;
	height: 100%;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #eee;
	border-radius: 10px;
}

.feature-card:hover {
	border-color: #0d6efd;
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: #f8f9fa;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	background: #0d6efd;
}

.feature-icon i {
	font-size: 1.5rem;
	color: #0d6efd;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
	color: #fff;
}

.feature-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2d2d2d;
	margin-bottom: 15px;
}

.feature-card p {
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.booking-ui { border: 1.5px solid #e5e7eb; }
.booking-calendar th, .booking-calendar td { text-align: center; padding: 0.7rem 0.2rem; font-size: 1.08rem; }
.booking-calendar td, .booking-calendar td.available, .booking-calendar td.unavailable {
    background: #fff !important;
    color: #222;
    box-shadow: none;
}
.booking-calendar td.selected {
    background: #0d6efd;
    font-weight: 600;
    box-shadow: 0 0 0 2px #0d6efd33;
    z-index: 2;
}
.booking-calendar td.today {
    border: 2px solid #0dcaf0;
    box-shadow: 0 0 0 2px #0dcaf033;
}
.booking-calendar td.today.selected {
    border-color: #0dcaf0;
}
.booking-calendar td.today:not(.selected) {
    background: #e6f7fa;
    color: #0dcaf0;
}
.booking-calendar td.available {
    cursor: pointer;
}
.booking-calendar td.unavailable {
    cursor: not-allowed;
}
.booking-calendar td.available:hover, .booking-calendar td.available:focus-visible {
    background: #e3f0ff;
    color: #0d6efd;
    box-shadow: 0 2px 8px #0d6efd22;
    outline: none;
}

.booking-times .btn-group .btn { min-width: 44px; }
.booking-times .btn-group .btn.active, .booking-times .btn-group .btn:active { background: #0d6efd; color: #fff; border-color: #0d6efd; }
#timeSlots button { border: 1.5px solid #e5e7eb; background: #fff; color: #222; border-radius: 14px; padding: 0.85rem 0; font-size: 1.13rem; transition: all 0.18s; outline: none; margin-bottom: 2px; position: relative; }
#timeSlots button.selected, #timeSlots button:focus-visible { border: 2px solid #0d6efd; background: #e3f0ff; color: #0d6efd; font-weight: 600; box-shadow: 0 0 0 2px #0d6efd33; z-index: 2; }
#timeSlots button:hover:not(.selected) { background: #0d6efd; color: #fff; border-color: #0d6efd; }
#timeSlots button:active { background: #0b5ed7; color: #fff; }

section, .booking-section, .package-section, .about-section, .contact-section {
	scroll-margin-top: 70px;
}

/* Mobile-specific adjustments for better navigation */
@media (max-width: 768px) {
	#instructors, #booking, #packages, #about, #contact, #reviews, #certifications {
		scroll-margin-top: 480px; /* Reasonable space for mobile navbar */
		padding-top: 3rem;        /* Extra padding for visual comfort */
	}
}

/* Instructor Section Styles */
.instructors-section {
	background: #f8f9fa;
	padding: 80px 0;
}

.instructor-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.07);
	overflow: hidden;
	transition: none;
	cursor: default;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.instructor-card:hover, .instructor-card:focus-within {
	box-shadow: 0 4px 24px rgba(0,0,0,0.07);
	transform: none;
	border-color: initial;
}

.instructor-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.instructor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.instructor-info {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 25px;
	text-align: center;
}

.instructor-name {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	font-family: 'Poppins', sans-serif;
}

.instructor-title {
	color: #c7a24a;
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.instructor-rating {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.instructor-rating i {
	font-size: 1.1rem;
}

.rating-text {
	color: #666;
	font-size: 0.9rem;
	margin-left: 8px;
}

.instructor-specialties {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 15px;
}

.specialty-tag {
	background: #f8f9fa;
	color: #666;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid #e9ecef;
}

.instructor-experience {
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 20px;
	font-weight: 500;
}

.instructor-select-btn {
	margin-top: auto;
	background: #c7a24a;
	color: #fff;
	border: 2px solid #c7a24a;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
	cursor: pointer;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: none;
}

.instructor-select-btn:hover, .instructor-select-btn:focus-visible {
	background: #fff;
	color: #b08a2e;
	border-color: #b08a2e;
	outline: none;
}

.instructor-select-btn.selected {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
}

.instructor-select-btn.selected:hover, .instructor-select-btn.selected:focus-visible {
	background: #218838;
	border-color: #218838;
	color: #fff;
}

/* Responsive adjustments for instructor cards */
@media (max-width: 768px) {
	.instructor-card {
		margin-bottom: 30px;
	}
	
	.instructor-image {
		height: 240px;
	}
	
	.instructor-info {
		padding: 20px;
	}
	
	.instructor-name {
		font-size: 1.2rem;
	}
}

/* ===== CSS FROM INDEX.HTML ===== */

/* Typed.js cursor styles */
.typed-cursor {
	font-size: 1.5rem;
	color: #fde047;
	opacity: 0.7;
	vertical-align: middle;
	margin-left: 2px;
}

/* Fade-in-up animations */
@keyframes fade-in-up {
	0% { opacity: 0; transform: translateY(40px); }
	100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
	animation: fade-in-up 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.animate-fade-in-up.delay-200 { animation-delay: 0.2s; }
.animate-fade-in-up.delay-300 { animation-delay: 0.3s; }

/* Calendar Styles */
#calendarTable {
	width: 100%;
	border-collapse: collapse;
}
#calendarTable th {
	padding: 8px;
	font-weight: 600;
	color: #6b7280;
	font-size: 0.875rem;
}
#calendarTable td {
	padding: 8px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 8px;
	margin: 2px;
}
#calendarTable td:hover {
	background-color: #fef3c7;
}

/* Flip animations */
@keyframes flipIn {
	0% { transform: rotateX(90deg); opacity: 0; }
	50% { transform: rotateX(-20deg); opacity: 1; }
	100% { transform: rotateX(0deg); opacity: 1; }
}
@keyframes flipOut {
	0% { transform: rotateX(0deg); opacity: 1; }
	100% { transform: rotateX(-90deg); opacity: 0; }
}
#flip-words {
	display: inline-block;
	min-height: 1.2em;
	transition: color 0.2s;
	font-size: inherit;
	vertical-align: baseline;
}
.flip-in {
	animation: flipIn 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.flip-out {
	animation: flipOut 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Instructor view button styles */
.instructor-view-btn {
	pointer-events: none;
}
.group:hover .instructor-view-btn {
	pointer-events: auto;
}

/* Mobile responsive styles */
@media (max-width: 640px) {
	#home h1 {
		font-size: 1.1rem !important;
	}
	#flip-words {
		font-size: 0.95rem !important;
	}
}

/* Mobile navigation active state */
@media (max-width: 768px) {
	#mobile-menu a.active {
		background-color: #fef9c3;
		color: #f59e0b !important;
		font-weight: bold;
		position: relative;
		border-radius: 1rem;
	}
	#mobile-menu a.active svg {
		color: #f59e0b !important;
		stroke: #f59e0b !important;
	}
	#mobile-menu a.active::after {
		content: '';
		display: block;
		height: 3px;
		width: 100%;
		background: #f59e0b;
		border-radius: 2px;
		position: absolute;
		left: 0;
		bottom: 0;
	}
}

/* Target specific section IDs for better mobile navigation */