/*
Theme Name: Music Academy Theme
Author: Gajendra Singh
Description: Custom theme for Music Academy website
Version: 1.0
*/

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

/* BODY */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* HEADER BACKGROUND */
.site-header {
    background: #87CEEB;
    padding: 15px 0;
}

/* MAIN CONTAINER */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO AREA - SIDE BY SIDE */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO IMAGE BIGGER */
.custom-logo {
    width: 120px !important;
    height: auto !important;
}

/* TEXT BLOCK */
.logo-text {
    display: flex;
    flex-direction: column;
}

.main-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* SUB TITLE */
.sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #ff6600; /* orange highlight */
}

/* MENU */
.menu li a {
    color: #111;
    font-weight: 600;
}

.menu li a:hover {
    color: #ff6600;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.custom-logo {
    height: 80px;   /* bigger logo */
    width: auto;
}

/* TAGLINE */
.tagline {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* MENU */
.menu li a {
    color: #111;   /* dark text for white background */
}

/* HOVER */
.menu li a:hover {
    color: #f39c12;
}

/* SITE TITLE */
header h1 {
    margin-bottom: 5px;
}

/* NAVIGATION */
nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 10px 6px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}
/* NAV CONTAINER FIX */
nav ul {
    display: flex !important;
    justify-content: center; /* or space-between if needed */
    align-items: center;
    gap: 10px !important; /* MAIN CONTROL */
    padding: 0;
    margin: 0;
}
nav ul li {
    margin: 0 !important;
    padding: 0 !important;
}
.hero {
    background-image: url('images/music-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero h2,
.hero p {
    position: relative;
    z-index: 1;
}
.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* SECTION */
.section {
    padding: 50px 20px;
    text-align: center;
}

/* COURSES */
.courses {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-box {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.course-box:hover {
    transform: translateY(-5px);
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* COURSE IMAGE */
.course-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

/* COURSE BOX */
.course-box {
    background: #fff;
    padding: 15px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: left;
}

.course-box:hover {
    transform: translateY(-8px);
}

/* COURSE TITLE */
.course-box h3 {
    margin: 10px 0;
    font-size: 18px;
}

/* COURSE TEXT */
.course-box p {
    font-size: 14px;
    color: #555;
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 10px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

nav ul li a:hover {
    color: #f39c12;
}
/* HEADER */
.site-header {
    background: #111;
    padding: 10px 0;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO IMAGE */
.custom-logo {
    height: 60px;
    width: auto;
}

/* MENU */
.menu {
    list-style: none;
}

.menu li {
    display: inline-block;
    position: relative;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
}

/* HOVER */
.menu li a:hover {
    color: #f39c12;
}

/* DROPDOWN */
.menu li ul {
    display: none;
    position: absolute;
    background: #222;
    top: 40px;
    left: 0;
    min-width: 180px;
}

.menu li:hover ul {
    display: block;
}

.menu li ul li {
    display: block;
}

.menu li ul li a {
    padding: 10px;
}
/* MUSIC INTRO SECTION */
.music-intro {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 0;
    text-align: center;
}

/* BOX */
.intro-box {
    width: 30%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* HEADING */
.intro-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0b2d39;
}

/* TEXT */
.intro-box p {
    font-size: 14px;
    color: #555;
}
/* ABOUT SECTION */
.about-section {
    width: 75%;
    margin: 60px auto;
    text-align: center;
}

/* SMALL LABEL */
.about-small {
    color: #d63384;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}

/* MAIN HEADING */
.about-title {
    font-size: 40px;
    font-weight: 800;
    color: #0b2d39;
    margin: 10px 0 20px;
}

/* TEXT */
.about-text {
    font-size: 16px;
    color: #333;
    line-height: 1.9;
    text-align: left;
}

/* FIRST LETTER */
.first-letter {
    float: left;
    font-size: 42px;
    font-weight: bold;
    color: #d63384;
    margin-right: 8px;
}

/* BUTTONS */
.about-buttons {
    margin-top: 25px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #d63384;
    color: white;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 10px;
}

/* SECONDARY BUTTON */
.btn-secondary {
    border: 2px solid #0b2d39;
    color: #0b2d39;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
}

/* HOVER */
.btn-primary:hover {
    background: #e65c00;
}

.btn-secondary:hover {
    background: #0b2d39;
    color: white;
}
.about-title {
    font-size: 40px;
    font-weight: 800;
    color: #0b2d39;
    margin: 10px 0 30px;
    position: relative;
    display: inline-block;
}

/* DESIGNER UNDERLINE */
.about-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #d63384, #87CEEB);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
/* TOP BAR */
.top-bar {
    background: #ffffff;
    border-bottom: 3px solid #ff6600; /* separator line */
    padding: 6px 0;
    font-size: 13px;
}

/* CONTAINER */
.top-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.top-left a {
    color: #333;
    text-decoration: none;
}

/* RIGHT LINKS */
.top-right a {
    color: #333;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
}

/* HOVER */
.top-right a:hover,
.top-left a:hover {
    color: #ff6600;
}
/* MUSIC QUOTE */
.music-quote {
    font-style: italic;
    color: #0b2d39;
    font-weight: 500;
}

/* ICON STYLE */
.top-left i {
    color: #ff6600;
    margin-right: 5px;
}
/* CONTAINER */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* ICON BASE */
.floating-icons .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* COLORS */
.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.youtube { background: #FF0000; }
.facebook { background: #1877F2; }

.floating-icons a:hover {
    transform: scale(1.2) translateY(-6px) !important;
    box-shadow: 0 12px 25px rgba(0,0,0,0.5) !important;
    filter: brightness(1.2) !important;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

.site-header.scrolled {
    background: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
}

.site-header.scrolled {
    background: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.blog-post {
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.blog-post h3 {
    color: #0b2d39;
}

.blog-post a {
    color: #ff6600;
    text-decoration: none;
}
/* WHY SECTION */
.why-section {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(to right, #f4fbff, #ffffff);
}

/* SMALL TITLE */
.section-small {
    color: #ff6600;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

/* MAIN TITLE */
.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0b2d39;
}

/* GRID */
.why-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.why-card {
    width: 250px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* ICON BOX */
.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #87CEEB);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* ICON */
.icon-box i {
    color: white;
    font-size: 22px;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* ===== SECTION TAG (WHAT WE OFFER) ===== */
.section-tag {
    color: #e83e8c; /* pink */
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ===== MAIN TITLE ===== */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b2d39; /* deep blue */
    margin-bottom: 10px;
}

/* ===== SUBTITLE ===== */
.section-subtitle {
    color: #555;
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

/* ===== GRADIENT UNDERLINE ===== */
.underline {
    width: 80px;
    height: 4px;
    margin: 12px auto 25px;
    border-radius: 5px;
    background: linear-gradient(to right, #e83e8c, #87CEEB);
}
/* ===== STATS SECTION (LIGHT THEME) ===== */
.stats-section {
    background: linear-gradient(to right, #f4fbff, #ffffff);
    color: #0b2d39;
    text-align: center;
}

/* GRID */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* BOX */
.stat-box {
    width: 220px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* NUMBER */
.stat-box h3 {
    font-size: 38px;
    font-weight: 800;
    color: #ff6600; /* your theme orange */
}

/* TEXT */
.stat-box p {
    margin-top: 5px;
    font-size: 15px;
    color: #555;
}

/* HOVER EFFECT */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.testimonial-section {
    padding: 60px 20px;
    background: #f9fbfd;
    text-align: center;
    overflow: hidden;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 800;
    color: #0b2d39;
}

.underline {
    width: 80px;
    height: 4px;
    margin: 10px auto 40px;
    background: linear-gradient(to right, #e83e8c, #87CEEB);
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scrollSimple 20s linear infinite;
}

.testimonial-card {
    flex: 0 0 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* SIMPLE SCROLL */
@keyframes scrollSimple {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ff6600;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.testimonial-card h4 {
    font-weight: 700;
    color: #0b2d39;
}


.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}
/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #0b2d39, #1e4d5c);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

/* HEADING */
.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* TEXT */
.cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* BUTTON WRAPPER */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: linear-gradient(to right, #ff6600, #e83e8c);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}
/* RESET FOOTER */
.site-footer {
    background: #0b2d39;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* GRID LAYOUT */
.footer-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    padding: 50px;
}

/* COLUMN */
.footer-box {
    text-align: left !important;
}

/* HEADINGS */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

/* TEXT */
.footer-box p {
    font-size: 14px;
    color: #ccc;
}

/* LINKS */
.footer-box ul {
    list-style: none !important;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-box ul li a:hover {
    color: #ff6600;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #081f28;
}
.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #ff6600; /* ORANGE HOVER */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}
.footer-map {
    width: 100%;
    margin-top: 20px;
}

.footer-map iframe {
    width: 100% !important;
    height: 250px !important;
    border: 0;
    display: block;
}
.footer-map {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
/* FLOATING SOCIAL ICONS */
.float-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ICON STYLE */
.float-social a {
    width: 45px;
    height: 45px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* COLORS */
.float-social a.whatsapp { background: #25D366; }
.float-social a.instagram { background: #E1306C; }
.float-social a.youtube { background: #FF0000; }
.float-social a.facebook { background: #1877F2; }

/* HOVER EFFECT */
.float-social a:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
}
/* FIX TESTIMONIAL STRETCH */
.testimonial-card {
    width: 300px !important;
    display: inline-block !important;
}
.testimonial-slider {
    overflow: hidden;
    max-width: 100%;
}
.page-title,
.entry-title,
h1.entry-title {
    display: none !important;
}
.page .entry-title{
    display:none;
}
/* INNER PAGE */
.inner-page{
    padding:80px 20px;
    min-height:500px;
    background:#f5f5f5;
}

.container-page{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.page-heading{
    font-size:40px;
    margin-bottom:30px;
    text-align:center;
}

.page-content{
    font-size:18px;
    line-height:1.8;
}
/* PROGRAMS GRID */
.courses-page-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:50px;
}

/* SINGLE CARD */
.course-card-page{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
}

/* HOVER EFFECT */
.course-card-page:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.course-image-page{
    overflow:hidden;
}

.course-image-page img{
    width:100%;
    height:270px;
    object-fit:cover;
    transition:0.5s ease;
}

/* IMAGE ZOOM */
.course-card-page:hover .course-image-page img{
    transform:scale(1.08);
}

/* TITLE */
.course-card-page h3{
    font-size:19px;
    padding:18px 18px 8px;
    color:#111;
    line-height:1.3;
}

/* TEXT */
.course-card-page p{
    padding:0 18px 18px;
    color:#555;
    line-height:1.6;
    font-size:14px;
}

/* BUTTON */
.course-btn{
    display:block;
    width:fit-content;
    margin:20px auto 22px;
    padding:10px 22px;
    background:#0c2d48;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s ease;
    font-weight:600;
    font-size:14px;
    text-align:center;
}

.course-btn:hover{
    background:#ff9800;
    transform:scale(1.05);
}
/* COURSE TITLE */
.course-card-page h3{
    font-size:20px;
    padding:18px 18px 8px;
    color:#111;
    line-height:1.4;
    text-align:center;
}

/* SUBTITLE */
.course-subtitle{
    display:block;
    font-size:17px;
    font-weight:500;
    color:#666;
    margin-top:5px;
}
