@font-face {
    font-family: 'yamen';
    src: url(fonts/Qalogre.otf) format(opentype) ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

:root {
    --primary-color: #2079da;
    --secondary-color: #2079da;
    --accent-color: #ffbe0b;
    --text-color: #e0e1dd;
    --border-color: #ffffff;
    --highlight: #fca311;
    --background-color:#081a2c;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

#privacyPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: var(--background-color);
  border: 2px var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.popup-box h2 {
  margin-top: 0;
  color: var(--accent-color);
}

.scroll-box {
  max-height: 150px;
  overflow: auto;
  padding: 10px;
  margin: 15px 0;
  border: 1px var(--accent-color);
  border-radius: 6px;
  background: var(--background-color);
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
}

.popup-box button {
  background: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-box button:hover {
  background: var(--accent-color)
}

#mainContent {
  display: none;
  padding: 20px;
}

.navbar {
    padding: 1.5rem 5%;
    background-color: var(--background-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1;
    margin: 1;
}

img.logo12 {
    height: 45px;
    width: 60px;
    padding: 0;
    margin: 0;
    color: azure;
    filter: brightness(0) invert(1);
      
}

img.logo13 {
    height: 120px;
    width: 130px;
    padding: 0;
    margin: 0;
    color: azure;
    filter: brightness(0) invert(1);
      
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.toggle{
    padding-right: 2rem;
    background: transparent;
    color: #fff;
    border: 0;
}

.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
  position: absolute;
  top: 60px; 
  right: 0;
  background: white;
  width: 100%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  flex-direction: column;
  display: flex;   
  border-radius: 12px;
  width: 40%;
  backdrop-filter: blur(6px);

}

.sub-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
    padding: 1rem;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    display: block; 
    border-radius: 12px;
    color: #000;
}


.sub-menu a:hover {
    background: var(--accent-color); 
    color: white; 
}

.toggle {
    display: none; 
}

@media only screen and (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .toggle {
        display: block; 
    }
}


.hero {
    height: 100vh;
    background: linear-gradient(45deg, rgba(27, 38, 59, 0.8), rgba(13, 27, 42, 0.5)), 
    url('photos/background1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 700px;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 1s forwards 0.5s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(224, 225, 221, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}


.cta-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--background-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.cta-button.secondary {
    color: var(--accent-color);
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-10px);}
}


.why-choose {
    padding: 6rem 5%;
    background-color: var(--background-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.section-subtitle {
    color: var(--border-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--background-color);
}

.benefits-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--primary-color);
    transition: transform 0.3s;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.benefits-card:hover {
    transform: translateY(-5px);
}

.benefits-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefits-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.benefits-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.benefits-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}


@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 0 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }
}

.plans {
    padding: 4rem 5%;
    background-color: var(--background-color);
    list-style-type: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
}

.section-subtitle {
    color: var(--border-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.plan-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.15s;
    border-color: var(--border-color);
}


.plan-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.plan-card hr {
    color: var(--border-color);
    max-width: 500px;
    align-items: first baseline;
    opacity: 0.1;
    
    
}

.plan-card li {
    color: var(--text-color);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.plan-card button {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.plan-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.footer {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--highlight);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;

}

.footer-section ul li a:hover {
    color: var(--highlight);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.title {
    font-size: 2.5rem;
    font-family: 'yamen';
    font-weight: 800;
    text-align: center;
    color: var(--accent-color);
    padding-top: 6rem;
    padding-bottom: 4.5rem;
}

.card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.in {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.bb {
    transition: tranform 0.5s;
}

.bb:hover {
    transform: translateY(-5px);
}

.in a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 800;
    display: block;
    font-size: 2.6rem;
    text-align: center;
    color: var(--accent-color);

}

.in p {
 visibility: hidden;
}

.oud {
    background-image: url(Images/img1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}


.guitar2 {
    background-image: url(Images/3232.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.guitar2:after {
     content: "Colors: sunburnt, navy ocean, \A honey, red wine, black, \A amber 90$";
  position: absolute;
  bottom: 100%;
  left: 0;
  background: transparent;
  color: white;
  padding: 5px;
  border-radius: 12px;
  white-space: pre-line;
  display: none;
}

.guitar2:hover::after {
    display:block;
}

.violin {
    background-image: url(Images/img3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.bozoq {
    background-image: url(Images/img4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.cello {
    background-image: url(Images/img5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.riq {
    background-image: url(Images/img6.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.tableh {
    background-image: url(Images/img7.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.trumpet {
    background-image: url(Images/img8.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.Oriental {
    background-image: url(Images/img9.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.Solfège {
    background-image: url(Images/img10.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.piano {
    background-image: url(Images/img11.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.cta-button.secondary1 {
    color: var(--accent-color);
    background-color: transparent;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
}

.center-container {
    display: flex;
    justify-content: center; 
    align-items: center;         
  }

  
  .cta-button.secondary1:hover {
    background-color: #0056b3;
  }
  
  .back-btn {
    background-color:transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    color: var(--border-color);
    border: 1.5px solid var(--border-color);
  }
  
  .back-btn:active {
    background-color: var(--accent-color);
  }