/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;              
  left: 0;              
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  background-color: #000000;
}


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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ed1c24;
}

.logo img {
  height: 100px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav ul li {
  margin-left: 30px;
}

.desktop-nav ul li a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
}

.desktop-nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ed1c24;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #111;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 60px 30px;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.mobile-logo {
  margin-bottom: 40px;
  text-align: center;
}

.mobile-logo img {
  height: 50px;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a.active {
  color: #ed1c24;
}

/* Utility Classes */
.text-red {
  color: #9D0405;
}

.btn {
  display: inline-flex;
  align-items: center;
  background-color: #9D0405;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Decorative Rounds */
.round {
  position: absolute;
  background-color: rgba(217, 217, 217, 0.2);
  border-radius: 50%;
  width: 430px;
  height: 430px;
  z-index: 1;
}

.round-1 {
  top: 0px;
  left: 4px;
}

.round-2 {
  top: 1034px;
  left: 1200px;
}

.round-3 {
  top: 2400px;
  left: 50px;
}

.round-4 {
  top: 2800px;
  left: 1445px;
}

.round-5 {
  top: 3645px;
  left: 468px;
}

.round-6 {
  top: 4469px;
  left: 531px;
  z-index: 1;
}

.round-7 {
  top: 4899px;
  left: -215px;
  z-index: 1;
}

/* Header Styles */
.site-header {
  background-color: #000;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo img {
  height: 100px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #9D0405;
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #9D0405;
}

/* Hero Section */
.hero {
  background-color: #000;
  padding: 200px 0px 305px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.violin-girl {
  position: absolute;
  width: 100%;
  max-width: 500px;
  top: -200px;
  left: 0px;
  opacity: 0.15;
}

.hero-text {
  color: white;
  max-width: 100%;
  margin: 0 auto;
}


.hero-text h1 {
  color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

.hero-text p {
  color: white;
  font-size: 15px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 40px;
}

/* Who We Are Section */
.who-we-are {
  background: linear-gradient(to right, #000 50%, #fff 50%);
  position: relative;
}

.who-we-are-content {
  display: flex;
  flex-wrap: wrap;
}

.left-side, .right-side {
  width: 50%;
  position: relative;
}

.left-side {
  position: relative;
  background-image: url('../assets/images/antique-wooden-gramophone-with-large-horn-vintage-music-player-old-record-player-nostalgic-sound-system-classic-audio-device-retro-design-beautiful-craftsmanship 1.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 650px;
}



.violin {
  max-width: 80%;
  opacity: 0.6;
  margin: 50px 0px 0px 425px;
}

.right-side {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-content {
  max-width: 666px;
  margin: 0 auto;
}

.right-content h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.right-content p {
  color: #000;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.join-btn {
  margin: 0 auto;
  display: block;
}

/* Mission Vision Section */
.mission-vision {
  background-color: #fff;
  padding: 200px 40px;
  position: relative;
  color: #fff;
}

.mission-vision-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.mission-content, .vision-content {
  background-color: #000;
  padding: 60px;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
  position: relative;
}

.circle {
  position: absolute;
  width: 125px;
  height: 121px;
  background-color: #9D0405;
  border-radius: 50%;
  transform: translateX(-50%);
}

.circle-mission{
  top: -40px;
  left: 95%;
}

.circle-vision{
  top: 220px;
  left: 5%;
}

.mission-content h3, .vision-content h3 {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.mission-content p, .vision-content p {
  font-size: 16px;
  text-align: center;
}

/* Directors Section */
.directors {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.directors h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.board-members-row-1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.board-members-row-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.director {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.member-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 15px solid #000;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.circle-3 {
  border-color: #9D0405;
}

.member-name {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

/* Circle background images */
.circle-1{ background-image: url('../assets/images/directors-images/Sarath De Alvis 02.jpeg'); }
.circle-2{ background-image: url('../assets/images/directors-images/Ranga\ Dasanayake\ 01.jpg'); }
.circle-3{ background-image: url('../assets/images/directors-images/Nilar\ N.\ Cassim.jpeg'); }
.circle-4{ background-image: url('../assets/images/directors-images/Bhathiya\ Jayakodi.png'); }
.circle-5{ background-image: url('../assets/images/directors-images/Amith\ Liyanage.jpg'); }
.circle-6{ background-image: url('../assets/images/directors-images/Chinthaka\ Jayakodi\ 03.jpeg'); }
.circle-7{ background-image: url('../assets/images/directors-images/Raj\ Thillaiyampalam.JPG'); }
.circle-8{ background-image: url('../assets/images/directors-images/Samantha\ Perera.jpeg'); }
.circle-9{ background-image: url('../assets/images/directors-images/Nisal\ Gamage.JPG'); }

/* Affiliates Section */
.affiliates {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  text-align: center;
}

.affiliates-text{
  padding: 30px;
}
.affiliates h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}

.affiliates p {
  font-size: 16px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.logo-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.logo-image {
  background-color: #000;
  color: #fff;
  width: 240px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: translateY(-10px);
}

/* Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
}

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

.footer-links a {
  color: #666;
  text-decoration: none;
  margin-right: 20px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.3s ease;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links .separator {
  color: #666;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-social {
  display: flex;
}

.footer-social a {
  color: #fff;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color:#9D0405;
}

.copyright {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* JavaScript helper classes */
.scroll-down .site-header {
  transform: translateY(-100%);
}

.scroll-up .site-header {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Common styles (Desktop + Mobile) */
.history {
  background: linear-gradient(to right, #fff 50%, #000 50%);
  position: relative;
}

.history-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.history-text {
  width: 50%;
  padding: 30px;
  color: #000;
}

.history-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.history-text p {
  font-size: 16px;
  max-width: 675px;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  background-color: #000;
  padding: 50px 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.year-circle {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
}

.timeline-p {
  font-size: 20px;
  color: #ffffff;
}

/* Timeline item paddings (only for desktop) */
.item-1 { padding-left: 5%; }
.item-2 { padding-left: 15%; }
.item-3 { padding-left: 20%; }
.item-4 { padding-left: 15%; }
.item-5 { padding-left: 5%; }

.red-circle-wrapper {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 800px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.red-circle {
  position: absolute;
  top: 50%;
  left: -115%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  border: 10px solid #9D0405;
}

@media (min-width: 992px) {
  .red-circle-wrapper {
    position: absolute;
    top: 50%;
    left: 56.5%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 800px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }
  
  .red-circle {
    position: absolute;
    top: 50%;
    left: -115%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    border-radius: 50%;
    border: 10px solid #9D0405;
  }
}


/* Large Desktop Responsive Styles */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .right-content h2 {
    font-size: 32px;
  }
  
  .mission-content h3, .vision-content h3 {
    font-size: 28px;
  }
}

/* Medium Desktop Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .who-we-are-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .left-side {
    width: 100%;
    min-height: 300px;
  }
  
  .right-side {
    width: 100%;
    padding: 40px 30px;
  }
  
  .right-content h2 {
    font-size: 28px;
  }
  
  .right-content p {
    font-size: 15px;
  }
  
  .mission-vision-content {
    gap: 30px;
    flex-direction: column;
  }
  
  .mission-content, .vision-content {
    width: 100%;
    padding: 30px;
  }
  
  .violin {
    margin: 40px 0px 0px 50px; 
    width: 60px;
  }
  
  .round {
    display: none;
  }
  
  .red-circle-wrapper {
    display: none;
  }
  
  .board-members-row-1 {
    gap: 30px;
  }
  
  .board-members-row-2 {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .history {
    background: #fff; 
  }

  .history-content {
    flex-direction: row; 
  }

  .history-text, 
  .timeline {
    width: 100%;
  }

  .history-text {
    padding: 20px;
  }

  .history-text h2 {
    font-size: 24px;
  }

  .history-text p {
    font-size: 14px;
  }

  .timeline {
    padding: 30px 10px;
    gap: 30px;
  }

  .timeline-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .year-circle {
    width: 50px;
    height: 50px;
    font-size: 16px;
    border: 2px solid #ffffff;
  }

  .timeline-p {
    font-size: 16px;
  }

  /*  REMOVE timeline item paddings in small view */
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    padding-left: 0;
  }
}

/* Large Tablet Responsive Styles */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .directors h2 {
    font-size: 32px;
  }
  
  .board-members-row-1, .board-members-row-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .member-card {
    width: 200px;
    height: 280px;
  }
  
  .member-image {
    width: 150px;
    height: 150px;
  }
  
  .member-name {
    font-size: 13px;
  }
  
  .mission-content h3, .vision-content h3 {
    font-size: 24px;
  }
  
  .right-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero Section */
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero-text h1 {
    font-size: 24px;
  }
  
  .hero-text p {
    margin: 20px 0;
    padding: 0 15px;
  }
  
  .violin-girl {
    top: 0px;
  }
  
  /* Who We Are Section */
  .who-we-are {
    background: #000;
  }
  
  .who-we-are-content {
    flex-direction: column;
  }
  
  .left-side, .right-side {
    width: 100%;
  }
  
  .left-side {
    height: 350px;
    background-size: 50%;
  }
  
  .violin {
    margin: 30px 0px 0px 30px;
    max-width: 90%;
  }
  
  .right-side {
    background-color: #fff;
    padding: 50px 20px;
  }
  
  /* Mission Vision Section */
  .mission-vision {
    padding: 100px 40px;
  }
  
  .mission-vision-content {
    flex-direction: column;
  }
  
  .mission-content, .vision-content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 40px;
  }
  
  .circle {
    width: 60px;
    height: 60px;
  }
  
  .circle-mission {
    top: -30px;
  }
  
  .circle-vision {
    top: 220px;
  }
  
  /* Directors Section */
  .directors h2 {
    font-size: 24px;
  }
  
  .board-members-row-1, .board-members-row-2 {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  /* History Section */
  .red-circle-wrapper {
    display: none;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links, .footer-social, .copyright {
    margin-bottom: 15px;
  }
  
  .footer-links a {
    display: inline-block;
    margin-bottom: 10px;
  }
}

/* Small Tablet / Large Phone Responsive Styles */
@media (max-width: 650px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-text h1 {
    font-size: 22px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 13px;
    padding: 0 10px;
  }
  
  .left-side {
    height: 300px;
    background-size: 60%;
  }
  
  .right-side {
    padding: 40px 15px;
  }
  
  .right-content h2 {
    font-size: 22px;
  }
  
  .right-content p {
    font-size: 13px;
  }
  
  .mission-vision {
    padding: 60px 20px;
  }
  
  .mission-content, .vision-content {
    padding: 30px 20px;
  }
  
  .mission-content h3, .vision-content h3 {
    font-size: 20px;
  }
  
  .mission-content p, .vision-content p {
    font-size: 13px;
  }
  
  .directors h2 {
    font-size: 24px;
  }
  
  .board-members-row-1, .board-members-row-2 {
    gap: 20px;
  }
  
  .member-card {
    width: 180px;
    height: 260px;
  }
  
  .member-image {
    width: 130px;
    height: 130px;
  }
  
  .member-name {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 70px;
  }
  
  /* Hero Section Mobile Enhancements */
  .hero {
    padding: 50px 0 30px;
  }
  
  .hero-text h1 {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 12px;
    margin: 15px 0;
    padding: 0 10px;
  }
  
  /* Who We Are Mobile Enhancements */
  .left-side {
    height: 250px;
    background-size: 70%;
    background-position: center;
  }
  
  .right-side {
    padding: 30px 15px;
  }
  
  .affiliates {
    padding: 50px 0;
  }
  
  .right-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .right-content p {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
  
  .directors h2,
  .affiliates h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Directors Mobile Enhancements */
  .directors {
    padding: 50px 0;
  }
  
  .board-members-row-1, .board-members-row-2 {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .member-card {
    width: 160px;
    height: 240px;
  }
  
  .member-image {
    width: 110px;
    height: 110px;
  }
  
  .member-name {
    font-size: 11px;
    padding: 8px;
  }
  
  .mission-content, .vision-content {
    padding: 30px 20px;
  }
  
  .mission-content h3, .vision-content h3 {
    font-size: 18px;
  }
  
  .member-circle {
    width: 150px;
    height: 150px;
    border-width: 10px;
  }
  
  .logo-image {
    width: 100%;
    height: 120px;
  }
  
  .year-circle {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }


  .timeline-p {
    font-size: 14px;
  }

  .timeline {
    gap: 20px;
  }
}

/* Ensure directors layout stays the same at larger screens */
@media (min-width: 1200px) {
  .board-members-row-1 {
    justify-content: center;
    gap: 60px;
  }
  
  .board-members-row-2 {
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .director {
    width: 180px;
  }
}