/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #eeeeee;
    overflow-x: hidden; /* Prevent horizontal scroll */
    border: none !important;
}

html {
    border: none !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Responsive Container */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 98%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #000000;
    color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links li a:hover {
    color: #e53935;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        justify-content: center;
        gap: 15px;
    }
    
    .nav-links li a {
        font-size: 14px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .logo {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links li a {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero .highlight {
    color: red;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #e53935;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    border: none;
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn:hover {
    background-color: #c62828;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        display: block;
        text-align: center;
    }
    
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        max-width: 250px;
    }
}

/* ========================================
   ANIMATION SYSTEM
   ======================================== */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in animation */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide up animation */
.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Rotate in animation */
.animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-rotate.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Bounce animation */
.animate-bounce {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation */
.animate-pulse {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-pulse.animated {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s infinite;
}

/* Flip animation */
.animate-flip {
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-flip.animated {
    opacity: 1;
    transform: rotateY(0deg);
}

/* Zoom in animation */
.animate-zoom {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-zoom.animated {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for multiple elements */
.animate-stagger-1 { transition-delay: 0.1s; }
.animate-stagger-2 { transition-delay: 0.2s; }
.animate-stagger-3 { transition-delay: 0.3s; }
.animate-stagger-4 { transition-delay: 0.4s; }
.animate-stagger-5 { transition-delay: 0.5s; }
.animate-stagger-6 { transition-delay: 0.6s; }

/* Keyframe animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(229, 57, 53, 0.5); }
    50% { box-shadow: 0 0 20px rgba(229, 57, 53, 0.8); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Special animation classes */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Button hover animations */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

/* Card hover animations */
.class-card, .coach-card, .booking-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.class-card:hover, .coach-card:hover, .booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Form input animations */
input, textarea, select {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input:focus, textarea:focus, select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.3);
}

/* Navigation animations */
.nav-links li a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e53935;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Responsive animations */
@media (max-width: 768px) {
    .animate-on-scroll,
    .animate-fade-left,
    .animate-fade-right,
    .animate-slide-up {
        transform: translateY(20px);
    }
    
    .animate-fade-left.animated,
    .animate-fade-right.animated,
    .animate-slide-up.animated {
        transform: translateY(0);
    }
    
    .animate-fade-left {
        transform: translateX(-30px);
    }
    
    .animate-fade-right {
        transform: translateX(30px);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .class-card:hover, .coach-card:hover, .booking-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .animate-on-scroll,
    .animate-fade-left,
    .animate-fade-right,
    .animate-slide-up {
        transform: translateY(15px);
    }
    
    .animate-fade-left {
        transform: translateX(-20px);
    }
    
    .animate-fade-right {
        transform: translateX(20px);
    }
}

/* Coaches Section */
.coaches {
    padding: 50px 0;
    text-align: center;
}

.coaches h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.coaches p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

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

.coach-card {
    background: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
}

.coach-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.coach-card h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
}

.coach-card p {
    margin: 10px 0;
    color: #cccccc;
}

.coach-card .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Classes Section */
.classes {
    padding: 50px 0;
    text-align: center;
}

.classes h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.classes p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.class-card {
    background: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.class-card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.class-card p {
    margin: 10px 0;
}

.class-card .price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.class-card .btn {
    background-color: #e53935;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.class-card .btn:hover {
    background-color: #c62828;
}

/* Appointment Section */
.appointment {
    padding: 50px 0;
    text-align: center;
}

.appointment h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.appointment p {
    font-size: 18px;
    margin-bottom: 40px;
}

.appointment-form {
    max-width: 500px;
    margin: auto;
    background: #0f0f0f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #cccccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 2px rgba(229,57,53,0.25);
}

.btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: darkgray;
}

/* Schedule Page Styles */
.schedule {
    padding: 60px 0;
    background-color: #000000;
}

.schedule-header h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-selector {
    text-align: center;
    margin-bottom: 40px;
}

.location-selector h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-address {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.timezone-info {
    font-size: 14px;
    color: #e53935;
    margin: 10px 0 0 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.class-reminders {
    background-color: #111111;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #e53935;
}

.class-reminders h3 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.class-reminders ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.class-reminders li {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.class-reminders li:before {
    content: "•";
    color: #e53935;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-link {
    color: #e53935;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-link:hover {
    text-decoration: underline;
}

.blackout-card {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.blackout-card h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blackout-card p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-primary {
    background-color: #ffffff;
    color: #e53935;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.weekly-schedule {
    margin-bottom: 60px;
}

.weekly-schedule h3 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-schedule {
    margin-bottom: 40px;
    background-color: #111111;
    border-radius: 8px;
    overflow: hidden;
}

.day-schedule h4 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    background-color: #e53935;
    margin: 0;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.class-slots {
    padding: 20px;
}

.class-slot {
    display: grid;
    grid-template-columns: 80px 1fr 150px 100px;
    gap: 20px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
    transition: background-color 0.3s ease;
}

.class-slot:last-child {
    border-bottom: none;
}

.class-slot:hover {
    background-color: #1a1a1a;
}

.class-slot .time {
    font-size: 16px;
    font-weight: bold;
    color: #e53935;
    text-align: center;
}

.class-slot .class-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.class-slot .instructor {
    font-size: 14px;
    color: #cccccc;
    text-align: center;
}

.class-slot .level {
    font-size: 12px;
    color: #888888;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    background-color: #333333;
    border-radius: 4px;
}

/* Calendar Styles */
.class-calendar {
    padding: 80px 0;
    background-color: #111111;
}

.class-calendar h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.class-calendar p {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
}

.calendar-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-nav-btn {
    background-color: #e53935;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: bold;
    color: #e53935;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
    color: #000000 !important;
    padding: 8px;
    border: 1px solid #e0e0e0;
}

.calendar-day:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.calendar-day.has-classes {
    background-color: #e53935;
    color: #ffffff;
}

.calendar-day.has-classes:hover {
    background-color: #c62828;
}

.calendar-day.has-class {
    background-color: #e53935;
    color: #ffffff;
}

.calendar-day.has-class:hover {
    background-color: #c62828;
}

.calendar-day.has-class .day-number {
    color: #ffffff;
    font-weight: bold;
}

.calendar-day.has-class .class-count {
    color: #ffffff;
    font-weight: 500;
}

.calendar-day.other-month {
    opacity: 0.5;
    color: #666666;
    background-color: #f9f9f9;
}

.calendar-day.today {
    border: 2px solid #e53935;
    background-color: #fff3e0;
}

.calendar-day.today .day-number {
    color: #e53935;
    font-weight: bold;
}

.class-count {
    font-size: 10px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.9;
    color: #000000 !important;
    font-weight: 500;
}

.day-number {
    font-weight: bold;
    font-size: 18px;
    color: #000000 !important;
    margin-bottom: 2px;
    display: block;
}

.day-name {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.calendar-day-classes {
    font-size: 10px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.8;
}

.class-legend {
    background-color: #000000;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.class-legend h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.legend-color.hiphop { background-color: #e53935; }
.legend-color.kpop { background-color: #ff6b6b; }
.legend-color.dancehall { background-color: #4ecdc4; }
.legend-color.contemporary { background-color: #45b7d1; }
.legend-color.house { background-color: #96ceb4; }
.legend-color.femme { background-color: #feca57; }

.calendar-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Schedule Page Styles */
.schedule-hero {
    padding: 100px 0 60px;
    background-color: #000000;
    text-align: center;
}

.schedule-hero h1 {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.schedule-hero h2 {
    font-size: 36px;
    font-weight: 300;
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-section {
    padding: 60px 0;
    background-color: #111111;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-address {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.timezone-info {
    font-size: 14px;
    color: #e53935;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reminders-section {
    padding: 60px 0;
    background-color: #000000;
}

.reminders-section h3 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.reminders-list li {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.reminders-list li::before {
    content: "•";
    color: #e53935;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-link {
    display: inline-block;
    color: #e53935;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e53935;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.blackout-card-section {
    padding: 60px 0;
    background-color: #111111;
    text-align: center;
}

.blackout-card-section h3 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blackout-card-section p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.studio-mission-section {
    padding: 80px 0;
    background-color: #000000;
    text-align: center;
}

.studio-mission-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-mission-section p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    color: #e53935;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #e53935;
    border-radius: 4px;
}

.social-link:hover {
    background-color: #e53935;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Instructors Section in Schedule Page */
.instructors-section {
    padding: 80px 0;
    background-color: #111111;
}

.instructors-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instructor-section {
    margin-bottom: 50px;
}

.instructor-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: #e53935;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e53935;
    padding-bottom: 10px;
    display: inline-block;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.instructor-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.instructor-card:hover {
    border-color: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.15);
}

.coach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.coach-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.coach-specialty {
    font-size: 12px;
    color: #666666;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.3;
}

.coach-times {
    font-size: 11px;
    color: #888888;
    margin-bottom: 0;
    line-height: 1.4;
    flex-wrap: wrap;
}

.time-slot {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 2px;
}

.studio-room {
    font-size: 10px;
    color: #e53935;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.pre-register-btn {
    display: inline-block;
    background-color: #e53935;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid #e53935;
}

.pre-register-btn:hover {
    background-color: #ffffff;
    color: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.coach-register-btn {
    display: inline-block;
    background-color: #e53935;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    width: auto;
    align-self: center;
}

.coach-register-btn:hover {
    background-color: #c62828;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.2);
}

.coach-photo-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.photo-placeholder {
    font-size: 24px;
    color: #999999;
}

.section-subtitle {
    font-size: 16px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.coach-schedule {
    font-size: 12px;
    color: #e53935;
    margin: 15px 0;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 4px;
    border-left: 3px solid #e53935;
}

.coach-schedule strong {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.schedule-details {
    margin: 10px 0;
}

.class-time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    margin: 4px 0;
    background-color: #000000;
    border-radius: 3px;
    border: 1px solid #333333;
}

.class-time-slot .day {
    font-weight: bold;
    color: #e53935;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.class-time-slot .time {
    color: #ffffff;
    font-weight: bold;
    font-size: 11px;
}

.class-time-slot .class-type {
    color: #cccccc;
    font-size: 10px;
    text-align: right;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.studio-location {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #333333;
    font-size: 11px;
}

.studio-location strong {
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.studio-location {
    color: #cccccc;
}

.no-instructors {
    text-align: center;
    color: #cccccc;
    font-size: 18px;
    font-style: italic;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333333;
}


/* Instructors Page Styles */
.instructors {
    padding: 60px 0;
    background-color: #000000;
}

.instructors h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instructor-section {
    margin-bottom: 60px;
}

.instructor-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e53935;
    padding-bottom: 10px;
    display: inline-block;
}

.instructor-card {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #111111;
    border-radius: 8px;
    border-left: 4px solid #e53935;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

.instructor-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}

.instructor-card p:last-child {
    margin-bottom: 0;
}

/* Coach Photo Styles */
.coach-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e53935;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

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

.instructor-card:hover .coach-photo img {
    transform: scale(1.1);
}

/* Event Card Styles */
.event-card {
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    text-align: center;
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #e53935;
}

.event-title {
    padding: 20px 20px 15px;
    text-align: center;
}

.event-title h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-subtitle {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-details {
    padding: 0 20px 20px;
}

.detail-box {
    background: #333333;
    border-radius: 20px;
    padding: 8px 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    font-size: 14px;
}

.detail-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.event-register-btn {
    display: block;
    background: #e53935;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 20px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.event-register-btn:hover {
    background: #c62828;
    color: white;
}

.studio-mission {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    margin-top: 60px;
    border-radius: 12px;
}

.studio-mission h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.studio-mission p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
}

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

.footer-logo {
    max-width: 200px;
}

.footer-links {
    margin: 0 20px;
}

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

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

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

.footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
}

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

/* Black & White Theme (scoped to main page) */
.theme-bw {
    background-color: #ffffff;
    color: #000000;
}

.theme-bw .navbar {
    background-color: #000000;
    color: #ffffff;
}

.theme-bw .navbar .logo,
.theme-bw .nav-links li a {
    color: #ffffff;
}

.theme-bw .nav-links li a:hover {
    color: #000000;
    background-color: #ffffff00;
}

.theme-bw .hero {
    background: linear-gradient(135deg, #ffffff 0%, #000000 100%);
    color: #000000;
}

.theme-bw .hero .highlight {
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.theme-bw .btn {
    background-color: #000000;
    color: #ffffff;
}

.theme-bw .btn:hover {
    background-color: #4d4d4d;
}

.theme-bw .btn.btn-outline {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
}

.theme-bw .btn.btn-outline:hover {
    background: #000000;
    color: #ffffff;
}

.theme-bw .coach-card,
.theme-bw .class-card,
.theme-bw .appointment-form {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.theme-bw .class-card .btn,
.theme-bw .appointment .btn {
    background-color: #000000;
    color: #ffffff;
}

.theme-bw .class-card .btn:hover,
.theme-bw .appointment .btn:hover {
    background-color: #4d4d4d;
}

.theme-bw .footer {
    background-color: #000000;
    color: #ffffff;
}

.theme-bw .footer-links ul li a,
.theme-bw .footer-bottom-links a,
.theme-bw .footer .logo {
    color: #ffffff;
}

.theme-bw .footer-links ul li a:hover,
.theme-bw .footer-bottom-links a:hover {
    color: #b3b3b3;
}

/* Class Calendar Styles */
.class-calendar {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.class-calendar h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.class-calendar p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    color: white;
}

.calendar-header h3 {
    margin: 0;
    font-size: 24px;
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
}

.calendar-weekdays div {
    padding: 15px 10px;
    font-weight: bold;
    color: #333;
    border-right: 1px solid #ddd;
}

.calendar-weekdays div:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    padding: 15px 10px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 80px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.calendar-day:hover {
    background-color: #f9f9f9;
}

.calendar-day.other-month {
    color: #ccc;
    background-color: #fafafa;
}

.calendar-day.today {
    background-color: #e8f4fd;
    font-weight: bold;
}

.calendar-day.has-class {
    background-color: #f0f8ff;
}

.day-number {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.class-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 2px;
}

.class-indicator.ballet { background-color: #ff6b6b; }
.class-indicator.hiphop { background-color: #4ecdc4; }
.class-indicator.contemporary { background-color: #45b7d1; }
.class-indicator.jazz { background-color: #96ceb4; }

.class-legend {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: inline-block;
}

.class-legend h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.legend-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.calendar-actions {
    margin-top: 30px;
}

.calendar-actions .btn {
    margin: 0 10px;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-container {
        margin: 0 20px 40px;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 10px 5px;
    }
    
    .day-number {
        font-size: 14px;
    }
    
    .class-indicator {
        width: 6px;
        height: 6px;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Us Page Styles - Dark */
.about-section {
    padding: 80px 0;
    background: #000000;
}

.about-section:nth-child(even) {
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.about-image {
    text-align: center;
}

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

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Values Section - Dark */
.values-section {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.value-card {
    background: #0f0f0f;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    color: #dddddd;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Facilities Section - Dark */
.facilities-section {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.facilities-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.facility-card {
    background: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

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

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

.facility-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: #ffffff;
}

.facility-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px 20px;
    color: #cccccc;
}

/* Team Section - Dark */
.team-section {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.team-section > .container > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-title {
    font-size: 18px;
    color: #e53935;
    font-weight: bold;
    margin: 10px 20px 15px;
}

.team-member h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #ffffff;
}

.team-member p:last-child {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px 20px;
    color: #cccccc;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    color: white;
    text-align: center;
}

.community-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.community-section > .container > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #ccc;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: red;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ccc;
}

.community-actions {
    margin-top: 50px;
}

.community-actions .btn {
    margin: 0 15px;
}

/* Make community section buttons white for contrast */
.community-section .btn {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.community-section .btn:hover {
    background-color: #e6e6e6;
    color: #000000;
}

/* Ensure outlined variant is also visible */
.community-section .btn.btn-outline {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.community-section .btn.btn-outline:hover {
    background-color: #e6e6e6;
    color: #000000;
    border-color: #e6e6e6;
}

/* Active Navigation Link */
.nav-links li a.active {
    color: red;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-section,
    .values-section,
    .facilities-section,
    .team-section,
    .community-section {
        padding: 60px 0;
    }
    
    .about-text h2,
    .values-section h2,
    .facilities-section h2,
    .team-section h2,
    .community-section h2 {
        font-size: 28px;
    }
    
    .image-placeholder {
        height: 200px;
    }
}

/* Contact Us Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #666;
}

.feature-icon {
    font-size: 20px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: red;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: red;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.location-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    font-size: 24px;
    margin-top: 5px;
}

.detail-item div {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.location-map {
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-placeholder span {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 14px;
    color: #ccc;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.social-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.social-section > .container > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.social-card p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .location-section,
    .faq-section,
    .social-section {
        padding: 60px 0;
    }
    
    .contact-info-section h2,
    .contact-text h2,
    .location-section h2,
    .faq-section h2,
    .social-section h2 {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        height: 200px;
    }
}

/* SerpAPI Search Integration Styles */
.map-search-container {
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff0000;
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.error {
    padding: 20px;
    text-align: center;
    color: #d32f2f;
    background: #ffebee;
    border-radius: 8px;
    border: 1px solid #ffcdd2;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.result-icon {
    font-size: 24px;
    margin-right: 15px;
}

.result-content {
    flex: 1;
}

.result-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.result-type {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
}

.result-details {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.distance {
    color: #ff0000;
    font-weight: bold;
}

.rating {
    color: #ffa500;
}

.view-on-map-btn {
    padding: 8px 16px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.view-on-map-btn:hover {
    background: #cc0000;
}

/* Responsive Design for Search */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }
    
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .result-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .view-on-map-btn {
        align-self: stretch;
        text-align: center;
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.revealed.reveal-left, .revealed.reveal-right { transform: translateX(0); }

/* Auth Forms (Login/Create Account) - Dark overrides */
.appointment-form {
    background: #0f0f0f;
}

.appointment-form .form-group label {
    color: #cccccc;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    background: #111111;
    color: #ffffff;
    border: 1px solid #333333;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: #aaaaaa;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 2px rgba(229,57,53,0.25);
}

.appointment .btn,
.appointment-form .btn {
    background-color: #e53935;
    color: #ffffff;
}

.appointment .btn:hover,
.appointment-form .btn:hover {
    background-color: #c62828;
}

/* Login: organize show password toggle */
.appointment-form .show-password {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: #aaaaaa;
    cursor: pointer;
    user-select: none;
}

.appointment-form .show-password input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e53935;
    margin: 0;
}

/* Sidebar */
body.with-sidebar {
    margin-left: 260px;
    transition: margin-left 0.25s ease;
}

body.sidebar-collapsed {
    margin-left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.25s ease;
}

.sidebar.collapsed {
    transform: translateX(-100%);
}

.sidebar .sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.sidebar .logo {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.sidebar .account {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar .account .name {
    font-size: 16px;
    font-weight: bold;
}

.sidebar .account .email {
    font-size: 13px;
    color: #bbb;
}

.sidebar nav {
    padding: 10px 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar nav a {
    display: block;
    padding: 12px 20px;
    color: #ddd;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: #1e1e1e;
    color: #fff;
}

.sidebar .actions {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar .actions .btn-logout,
.sidebar .actions .btn-create,
.sidebar .actions .btn-login {
    width: 100%;
    background: #e53935;
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 900px) {
    body.with-sidebar {
        margin-left: 0;
    }
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar-toggle {
        left: 16px;
    }
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: fixed;
    top: 16px;
    left: 276px;
    z-index: 10000;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    transition: left 0.25s ease, transform 0.15s ease, background 0.15s ease;
}

.sidebar-toggle:hover {
    background: #1e1e1e;
}

.sidebar-toggle:active,
.sidebar-toggle.active {
    transform: scale(0.92);
}

body.sidebar-collapsed .sidebar-toggle {
    left: 16px;
}
