body {
  margin: 0;
  font-family: 'Gill Sans', 'Times New Roman', Times, serif;
  line-height: 1;
  color: #222;
  text-decoration: none;
}
/* HEADER */
header {
  background: #a7140c;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header h1{
  padding-left: 10px;
  font-size: 25px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Logo cirlce*/
.logo-circle {
    width: 40px;          /* Circle size */
    height: 40px;
    background-color: rgb(29, 20, 20);
    border-radius: 50%;    /* Makes circle */
    
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 4px 10px rgba(0,0,0,0.15); /* Optional shadow */
}

.logo-circle img {
    width: 100px;           /* Logo size */
    height: auto;
}

nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav a {
  color: #a7140c;
  text-decoration: none;
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.header-btn {
  background: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
}

/* MENU ICON 
.menu-icon {
  padding-right: 25px;
  display: none;
  font-size: 26px;
  cursor: pointer;
}*/
    .menu-icon{
    display: none;
    position: static;
    top: 30px;
    margin-right:20px ;
    font-size: 26px;
    background:none;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000;
}
/* MOBILE 
@media (max-width: 768px) {
  nav {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #a7140c;
    position: absolute;
    top: 160px;
    right: 0;
    padding: 10px;
    width: 220px;
  }

  nav.active { display: flex; }
  .menu-icon { display: block; }

  .about-container { flex-direction: column; text-align: center; }
  .hero h2 { font-size: 26px; }
}*/

@media(max-width:1100px){
  header{
    width:100%;
    position: fixed;
  }
  header h1{
  padding-left: 10px;
  font-size: 20px;
}

  .menu-icon{
        display:block;
        position: static;
        top: 30px;
        margin-right:20px ;
    }
    nav{
        position:absolute;
        top:150px;
        left:0;
        width:100%;
        background:#a7140c;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        max-height:0;
        overflow:hidden;
        transition:0.4s ease;
    }

    nav.active{
        display: flex;
        max-height:400px;
        padding:20px 0;
    }

    nav a{
        background: none;
        color: #fff;
        width:100%;
        text-align:center;   
        /* ⭐ Center Font 
        border-bottom:1px solid rgba(255,255,255,0.1);
        */
    }
    .header-btn {
        background: none;
        border-radius: 4px;
}
}

/* HERO */
.hero {
    /*
  background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d') center/cover;
  
  */
  background-image: url(pic/music-instrument-store.jpg);
  background-size: cover;
  color: #fff;
  margin-top: 10px;
  padding: 90px 20px;
  text-align: center;
  justify-items: center;
}
.hero1{
  width: fit-content;
  height: auto;
  border-radius: 25px;
  background: rgba(167, 20, 12, 0.5);
  align-items: center;
  justify-items: center;
}

.hero h2 { 
  font-size: 32px; 
  padding-top: 23px;
  padding-left: 10px;
  padding-right: 10px;
}
.hero p { 
  font-style: italic; 
  font-size: 18px; 
  padding-bottom: 10px;
}
.btn {
  background: #e63946;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

/* SECTIONS */
section {
  max-width: auto;
  height: fit-content;
  margin-top: 25px;
  background: #a7140c;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

section h2 {
  padding-top: 10px;
  text-align: center;
  color: #fff;
}

/* ABOUT */
.about-container {
  width: auto;
  height: auto;
  background: none;
  padding: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.about-container img {
  width: 250px;
  height: 250px;
  border-radius: 10px;
}

.about-text { 
  width: 350px;
  height: 250px;
  align-content: center;
  text-align: center;
  background:white;
  border-radius: 10px;

}

.about-text p{
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
  color:#a7140c;
  line-height: 1;
}

/* COURSES */
.courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding:0 10px 0px 10px;
}

.course-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.course-box h3{
  color: #fff;
}
.course-box img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* WHY US */
.why-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}

.why-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  text-align: center;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTACT */
.contact-info {
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #222;
}
.social-links img { width: 28px; }
/*contact1*/
.contact-branch1 {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-left1 {
  background: white;
  border-radius: 25px;
  flex: 1;
  min-width: 260px;
  align-content: center;
  text-align: center;
}

.contact-left1 a{
  text-decoration: none;
  color: #a7140c;
  font-weight: 900;
}
.contact-right1 {
  flex: 1;
  min-width: 260px;
}

.contact-right1 iframe{
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 25px;
}


/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
}

