@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Orbitron:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://use.typekit.net/kcb6her.css');

@font-face {
    font-family: 'AsiaTiger';
    src: url('https://wtmaa.net/fonts/AsiaTiger.woff2') format('woff2'),
         url('https://wtmaa.net/fonts/AsiaTiger.woff') format('woff'),
         url('https://wtmaa.net/fonts/AsiaTiger.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    font-family: Georgia;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #ff0000;
    transform: scale(1.1);
    background: rgba(255, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    width: 100vw;
    aspect-ratio: 16 / 9;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
        url('https://wtmaa.net/IMAGES/hero_wtmaa_cartoon_16to9.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    top: 3rem;
}

.hero-content h1 {
    font-family: 'AsiaTiger', serif;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(255,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    letter-spacing: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-content .subtitle {
    font-family: "avalanche", sans-serif;
    font-weight: 400;
    font-style: normal;    
    font-size: 2.5rem;
    color: #fff;
    margin-top: -3rem; 
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: 12px;
    text-transform: uppercase;
    align: center;
    
}

.hero-content .tagline {
    font-size: 1.2rem;
    color: #A30000;
    margin-top: -1rem;    
    margin-bottom: 2rem;
    font-weight: bold;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s both;

}

.hero-content .tagline::before,
.hero-content .tagline::after {
    content: '"';
    font-size: 1.4rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: justify;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Martial Arts Section */
.martial-arts {
    padding: 100px 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #ff0000;
    margin: 20px auto;
}

.arts-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.art-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 1;
    min-width: 300px;
}

.art-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.art-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.taekwondo {   width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
    url('https://wtmaa.net/IMAGES/tkd_wtmaa.png');
  background-size: cover;
  background-position: 0px -100px;
  display: flex;
  position: relative;
}

.kenpo {    
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
    url('https://wtmaa.net/IMAGES/kenpo_wtmaa.png');
  background-size: cover;
  background-position: 0px -50px;
  display: flex;
  position: relative;
}

.eskrima { 
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
    url('https://wtmaa.net/IMAGES/eskrima_wtmaa.png');
  background-size: cover;
  background-position: 0px -15px;
  display: flex;
  position: relative;
}

.art-content {
    padding: 1.5rem;
}

.art-content h3 {
    color: #ff0000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.art-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Enhanced Instructors Section */
.instructors {
    padding: 100px 0;
    background: #0a0a0a;
}

.instructor-grid {
    margin-top: 4rem;
}

.instructor-card {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    gap: 3rem;
    min-height: 300px;
}

.instructor-card:nth-child(even) {
    flex-direction: row-reverse;
}

.instructor-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.instructor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff0000;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.instructor-image img {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: -4px;
}

.instructor-content {
    flex: 1;
    text-align: left;
}

.instructor-card:nth-child(even) .instructor-content {
    text-align: right;
}

.instructor-card:nth-child(even) .instructor-content h3,
.instructor-card:nth-child(even) .instructor-content .role {
    text-align: right;
}

.instructor-content .bio {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify !important;
    hyphens: auto;
}

.instructor-card .instructor-content .bio {
    text-align: justify !important;
}

.instructor-content h3 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.instructor-content .role {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.instructor-card:nth-child(even) .credentials {
    justify-content: flex-end;
}

.credential-badge {
    background: #ff0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Affiliations Section */
.affiliations {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.affiliation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.affiliation-logo {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.affiliation-logo:hover {
    border-color: #ff0000;
    transform: scale(1.05);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #222;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #ff0000;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1rem;
}

.reviewer {
    color: #fff;
    font-weight: bold;
}

/* Professional Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Arial', sans-serif;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ff1a1a, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chat-bubble:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(255, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.chat-bubble svg {
    width: 30px;
    height: 30px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #00ff44, #00cc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    animation: pulse3d 2s infinite;
    box-shadow: 
        0 4px 12px rgba(0, 255, 0, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse3d {
    0% { 
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(0, 255, 0, 0.4),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 
            0 6px 18px rgba(0, 255, 0, 0.6),
            0 3px 9px rgba(0, 0, 0, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }
    100% { 
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(0, 255, 0, 0.4),
            0 2px 6px rgba(0, 0, 0, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp3d 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes slideUp3d {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(10deg);
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 5px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
}

.chat-header {
    background: linear-gradient(145deg, #ff1a1a, #cc0000);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 
        0 4px 15px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-title {
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chat-subtitle {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chat-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff1a1a, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(255, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-message.user .message-avatar {
    background: linear-gradient(145deg, #007bff, #0056b3);
    box-shadow: 
        0 4px 12px rgba(0, 123, 255, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.message-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 70%;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-message.user .message-content {
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    box-shadow: 
        0 4px 15px rgba(0, 123, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-container {
    padding: 15px 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 -2px 8px rgba(0, 0, 0, 0.05);
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: all 0.2s;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-input:focus {
    border-color: #ff0000;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(255, 0, 0, 0.1),
        0 2px 8px rgba(255, 0, 0, 0.2);
}

.chat-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #ff1a1a, #cc0000);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 
        0 4px 12px rgba(255, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-send:hover {
    background: linear-gradient(145deg, #ff0000, #b30000);
    transform: translateY(-1px);
    box-shadow: 
        0 6px 18px rgba(255, 0, 0, 0.4),
        0 3px 9px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.chat-send:disabled {
    background: linear-gradient(145deg, #cccccc, #999999);
    cursor: not-allowed;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.typing-message .message-content {
    background: linear-gradient(145deg, #f0f0f0, #e8e8e8) !important;
    color: #666 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 16px 20px !important;
}

.typing-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0ms;
}

.typing-dot:nth-child(2) {
    animation-delay: 200ms;
}

.typing-dot:nth-child(3) {
    animation-delay: 400ms;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #ff0000;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    color: #ccc;
}

.contact-item strong {
    color: #ff0000;
}

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

/* Responsive */
@media (max-width: 600px) {
    
.hero {
    width: 100vw;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
        url('https://wtmaa.net/IMAGES/hero_wtmaa_cartoon_mobile.png');
    background-size: cover;
    background-position: center;
    display: flex;
    position: relative;
    top: 3rem;
    }

    .hero-content h1 {
        margin-top: 1.5rem;
        font-size: 3.2rem;
        letter-spacing: 10px;
    }

    .hero-content .subtitle {
        font-size: 1.7rem;
        letter-spacing: 5px;
        margin-top: -2rem; 
       
    }

   .hero-content p {
    width: 70%;          /* shrink to 70% */
    margin-left: auto;   /* push it to the right */
    text-align: left;   /* align text to the right */
    }
  
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.9s both;
}

    .section-title {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
  
    .nav-links {
        display: none;
    }

    .logo-container {
        gap: 0.3rem;
    }

    .logo-image {
        width: 35px;
        height: 35px;
        font-size: 0.6rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .arts-grid {
        grid-template-columns: 1fr;
    }

    .instructor-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
        padding: 1rem;
    }
    
    .instructor-card:nth-child(even) .instructor-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
        padding: 1rem;
    }
  
   .instructor-card:nth-child(even) .instructor-content h3,
   .instructor-card:nth-child(even) .instructor-content .role {
       text-align: center;
       }

    .instructor-content h3 {
        font-size: 1.8rem;
    }

    .instructor-content {
        text-align: center !important;
    }

    .credentials {
        justify-content: center !important;
        gap: 0.5rem;
    }

    .credential-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
    }

    .instructor-image {
        width: 150px;
        height: 150px;
    }
}