body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #425777;
}

* {
    box-sizing: border-box;
}
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;        
    background-image: url("https://t3.ftcdn.net/jpg/04/27/62/88/240_F_427628858_LLqSW4LwQ9G1SX4KlB997eLuoa6EpLB1.jpg");
    background-size: cover; 
    background-position: center;
    padding: 20px;
}

.intro-content h1 {
    font-family: "Gabriola", serif;
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #131312;
}

.intro-content p {
    font-family: "Gabriola", serif;
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #593a02;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.intro-content .btn {
    display: inline-block;
    background: #ffaa00;
    color: #fff;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.intro-content .btn:hover {
    background: #00f7ff;
}

full-background {
    height: 100vh;
    background-image: url("https://t3.ftcdn.net/jpg/04/27/62/88/240_F_427628858_LLqSW4LwQ9G1SX4KlB997eLuoa6EpLB1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.full-background .background-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.full-background .background-content p {
    font-size: 18px;
    color: #fff;
    max-width: 700px;
}
@media (max-width: 992px) {
    .intro-content h1 {
        font-size: 36px;
    }
    .intro-content p,
    .full-background .background-content p {
        font-size: 16px;
    }
    .intro-content .btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .intro-content h1 {
        font-size: 28px;
    }
    .intro-content p,
    .full-background .background-content p {
        font-size: 14px;
    }
    .intro-content .btn {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;    
    text-align: center;      
    height: 60vh;
    margin-top: -100px;           
    background-color: #ffbb00de; 
    padding: 20px;
}
.slide-down {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    opacity: 0;           
    transform: translateY(-50px); 
    animation: slideDown 1s forwards;
}
.fade-in {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    color: #555;
    opacity: 0;               
    animation: fadeIn 1s forwards;
    animation-delay: 1s;   
}
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 20px; 
}

.feature {
    display: flex;
    flex-direction: column; 
    align-items: center;
    max-width: 30%;
    text-align: center;
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.feature-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .features {
        flex-direction: column;
        align-items: flex-start; 
    }

    .feature {
        flex-direction: row;
        align-items: center;
        max-width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }

    .feature img {
        width: 40%;
        margin-bottom: 0;
        margin-right: 20px;
    }

    .feature-text {
        width: 60%;
    }
}

@media (max-width: 600px) {
    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature img,
    .feature-text {
        width: 100%;
        margin: 0;
    }
}

.club img{
    vertical-align: middle; 
}
.club span{
    padding-left: 10px;
    font-weight: 700;
}
.header{
    margin-bottom: 20px!important;
}
.logo{
    border-radius: 50%;
    max-width: 100px;
}

header {
     display: flex;              
    flex-direction: column;     
    align-items: flex-start;  
    padding: 20px;
}

.nav {
    margin-top: 10px;
}

.nav-item {
    font-weight: bold; 
    font-size: 50px;
    text-decoration: none;
    padding: 6px 12px;
}

.nav-item:hover {
    color: #00f7ff; 
}


.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.edgeGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

.smlGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", sans-serif;
}

.footer {
    background-color: #ffaa00;
    color: #fff;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}
.footer-left {
    text-align: center;
}

.club-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons a img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .footer-left {
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.footer-right {
    width: 100%;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.message-input {
    width: 100%;
    height: 120px;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    resize: none;
}

.send-btn {
    display: inline-block;
    align-self: center;
    background-color: #000000;
    color: #ffffff;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #00f7ff;
}
.send-toggle {
    display: none;
}

.send-message {
    margin-top: 15px;
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.send-toggle:checked + .send-btn + .send-message {
    opacity: 1;
    transform: translateY(0);
}
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #000000;
}
@media (min-width: 992px) {
    .footer-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-left {
        flex: 1;
        text-align: left;
    }

    .footer-right {
        flex: 2;
    }

    .input-row {
        flex-direction: row;
    }

    .input-row input {
        flex: 1;
    }

    .send-btn {
        align-self: flex-end;
    }
}
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-right {
        order: 1;
        width: 100%;
    }

    .footer-left {
        order: 2;
        text-align: center;
        margin-top: 30px;
    }

    .input-row {
        flex-direction: row; 
        gap: 10px;
    }

    .input-row input {
        flex: 1;
    }

    .send-btn {
        align-self: center;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-right {
        order: 1;
        width: 100%;
    }

    .footer-left {
        order: 2;
        text-align: center;
        margin-top: 30px;
    }
    .input-row {
        flex-direction: row; 
        gap: 10px;
    }

    .input-row input {
        flex: 1;
    }

    .send-btn {
        align-self: center;
        margin-top: 10px;
    }
}

nav {
    padding: 5px;
    text-align: right;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    text-align: center;
    display: inline;
}

a {
    text-decoration: none;
    padding: 10px 5px;
    margin: 0 5px;
    color: #425777;
    display: inline-block;
    transition: all 0.7s;
}

a:hover {
    color:#00f7ff;
    background: #ffbf0000;
}

.active {
    border-bottom: 2px solid #425777;
}

.darkBg .button{
    border: 1px #e8ecf2 solid;
    color: #e8ecf2;
}
.darkBg .button:hover{
    color: #425777;
    background: #e8ecf2;
}

[class*="col"] {
    grid-column-end: span 12;
}
.twothirds {
        grid-column-end: span 12;
    }

@media only screen and (max-width: 600px) {
    footer .right, footer .club, .header .club, .header nav{
        text-align: center;
    }

    .sm1 {
        grid-column-end: span 12;
    }

    .sm2 {
        grid-column-end: span 6;
    }

    .sm3 {
        grid-column-end: span 4;
    }

    .sm4 {
        grid-column-end: span 3;
    }

    .sm6 {
        grid-column-end: span 2;
    }

    .sm12 {
        grid-column-end: span 1;
    }
}

@media only screen and (min-width: 601px) {
    .reduced {
        padding-left: 10%;
        padding-right: 10%;
    }
    .smlGrid {
        margin: 0 auto;
        max-width: 940px;
    }
    .twothirds {
        grid-column-end: span 8;
    }

    .md1 {
        grid-column-end: span 12;
    }

    .md2 {
        grid-column-end: span 6;
    }

    .md3 {
        grid-column-end: span 4;
    }

    .md4 {
        grid-column-end: span 3;
    }

    .md6 {
        grid-column-end: span 2;
    }

    .md12 {
        grid-column-end: span 1;
    }
}

@media only screen and (min-width: 1025px) {
    .grid, .quote {
        margin: 0 auto;
        max-width: 1400px;
    }
    .vertCtr, .reduced {
        padding-left: 30%;
        padding-right: 30%;
    }
    
    .col1 {
        grid-column-end: span 12;
    }

    .col2 {
        grid-column-end: span 6;
    }

    .col3 {
        grid-column-end: span 4;
    }

    .col4 {
        grid-column-end: span 3;
    }

    .col6 {
        grid-column-end: span 2;
    }

    .col12 {
        grid-column-end: span 1;
    }
}


.zeroGridGap{
    gap: 0 !important; 
}

.fullHeight{
    height: 100vh;
    display: grid;
}

:root { --gutter:16px; }


.container{ 
  max-width:1100px; 
  margin:0 auto; 
  display:flex; 
  flex-direction:column; 
  gap:24px; 
}

.card{ 
  background:#fff0d3; 
  padding:16px; 
  border-radius:6px; 
  box-shadow:0 1px 0 rgba(0,0,0,0.05); 
  display:flex; 
  flex-direction:column; 
  gap: 16px; 
}

.title{ 
  display:inline-block; 
  background:#ffaa00; 
  color:#fff; 
  padding:6px 10px; 
  font-weight:700; 
  margin-bottom:12px; 
}

.history-text{ 
  line-height:1.5;
  background:#00000070; 
  color: #ffffff;
  padding:12px; 
  border-radius:4px; 
}

.top-image{ 
  background:#d6d6d6; 
  height:140px; 
  border-radius:4px; 
}

.top-image img{
  width:100%; 
  height:100%; 
  border-radius:4px; 
  object-fit: cover; 
}

.connection{ 
  background:#00000053; 
  color: #ffffff;
  padding:10px; 
  border-radius:4px; 
  flex:1; 
  display:flex; 
  flex-direction:column; 
}
.connection .heading{ 
  display:inline-block; 
  background:#ffaa00; 
  padding:6px; 
  border:1px solid #ddd; 
  font-weight:700; 
  margin-bottom:10px; 
}

.thumbs{ 
  display:flex; 
  flex-direction:column; 
  gap:16px; 
  margin-top:16px; 
  flex:1; 
}
.thumbs img{ 
  width:100%; 
  height:150px;
  background:#dcdcdc;
  border-radius:4px; 
  display:block;
   object-fit:cover; 
}

.footer-text{ 
  margin-top:18px; 
  background:#00000000; 
  padding:12px; 
  border-radius:4px; 
  text-align:left; 
}
@media(min-width:768px){
  .container{ 
    flex-direction:row; 
    gap:24px; 
    align-items:stretch; 
}

  .left{ 
    flex:1;
    display:flex; 
    flex-direction:column; 
    gap:16px; order:0; 
}
  .history-container{ 
    display:flex; 
    flex-direction:column; 
    gap:16px; 
    flex:1; 
}
  .after-history{
     display:flex; 
     flex-direction:column; 
     gap:16px; 
     flex:1; 
    
}

  .right{
     width:300px; 
     flex-shrink:0; 
     display:flex; 
     flex-direction:column; 
     gap:16px; 
     order:1; 
    
}
  .top-image{
     height:220px; 
    
}
  .thumbs{
     flex-direction:row; 
     gap:16px;
    justify-content:flex-start; 
}
  .thumbs img{
     width:32%; 
     height:160px; 
}
}
@media(max-width:767px){
  .container{ flex-direction:column; }
  .left{ order:0; }
  .right{ order:1; }
  .after-history{ order:2; }

  .thumbs {
    align-items: center;
    width: 100%;
  }
  .thumbs img {
    width: 80%;      
    max-width:300px;
  }

  .footer-text {
    width: 80%;
    max-width: 300px;
    margin: 16px auto 0 auto;
  }
}

@media(min-width:1100px){
  .container{ padding:24px; }
}

@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-history {
  animation: slideFadeIn 0.8s ease-out forwards;
}

.site-footer {
  background-color: #ffaa00;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .social-icons {
    justify-content: center;
  }
}

.social-icons a img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-text {
    margin-top: 0px;
    text-align: center;
    font-size: 14px;
    color: #000000;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #ffffff;
color: #312103;
}


.background-rect {
position: absolute;
top: 200;
left: 0;
width: 100%;
height: 380px;
background: #00f7ff;
z-index: -1;
}


.contact-section {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: all 0.4s ease;
}


h2 {
font-size: 2rem;
margin-bottom: 10px;
}


p {
max-width: 600px;
line-height: 1.6;
margin-bottom: 20px;
}

h3 {font-size: 2rem;
margin-bottom: 10px;
}


@media (min-width: 768px) {
.contact-section {
align-items: flex-start;
text-align: left;
animation: slideIn 0.7s ease forwards;
}


@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.container {
    padding: 20px;
}

.section-title {
    background: white;
    padding: 12px 0;
    text-align: center;
    font-weight: bold;
    margin: 20px auto;
    width: 70%;
}

.books-box {
    background: #ffaa00;
padding: 20px;
    margin-bottom: 0%;
    text-align: center;
}
.teacher-box {
    background: #ffc4005f;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}
.experts-box {
    background: #ffc4005f;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.books-list p {
    margin: 6px 0;
}

.teacher-info {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.carousel {
  position: relative;
}

.carousel input {
  display: none;
}

.slides {
  display: flex;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}


#slide1:checked ~ .slides #s1,
#slide2:checked ~ .slides #s2,
#slide3:checked ~ .slides #s3 {
  display: block;
}

.slides .slide {
  display: none;
}

@media screen and (min-width: 768px) {
  .slides {
    display: flex;
    gap: 20px;
  }

  .slide {
    display: block !important;
    min-width: calc(33.333% - 13.33px);
  }

  .navigation {
    display: none;
  }
}

.expert-item {
    margin-bottom: 25px;
}



.expert-text {
    width: 80%;
    margin: 0 auto;
    line-height: 1.4;
}

@media (min-width: 768px) {

    .layout {
        display: flex;
    }

    .left-column {
        height: 500px;
        width: 28%;
        padding:20px;
    }

    .right-column {
        width: 72%;
        padding: 20px;
    }

    .teacher-images {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .teacher-img {
        margin: 0;
    }

    .expert-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .expert-img {
        margin: 0;
    }

    .expert-text {
        margin: 0;
        width: auto;
        flex: 1;
    }
}

*{
  box-sizing: border-box;
  margin:0;
  padding:0;
  font-family: Arial, sans-serif;
}

body{
  background:#ffffff;
  padding: 0%;
}

.container{
  max-width:1000px;
  margin:0 auto;
}


.calendar-box{
  background:#ffaa00;
  padding:20px;
  margin-bottom:20px;
}

.calendar-inner{
  background:#ffffff;
  padding:20px;
}

.calendar-title{
  background:#00f7ff;
  color:#fff;
  padding:8px 20px;
  font-size:14px;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:15px;
}

.month-title{
  text-align:center;
  font-weight:bold;
  color: #000000;
  margin-bottom:10px;
}

.calendar-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  border:2px solid #ff0000;
}

.day-name,
.day{
  padding:10px;
  border:1px solid #ffc30f;
  text-align:center;
  font-size:13px;
}

.day-name{
  background:#00f7ff;
  font-weight:bold;
  color: #ffffff;
}

.empty{
  background:#ffffff;
}

.today{
  background:#fa0000;
  color:#fff;
  border-radius:50%;
  width:28px;
  height:28px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.main-content{
  background:#ffaa00;
  padding:20px;
}

.search-bar{
  background:#fff;
  padding:10px;
  margin-bottom:20px;
}

.search-bar input{
  width:100%;
  padding:8px;
  border:none;
  outline:none;
  font-size:14px;
}

.upcoming-label{
  background:#fff;
  text-align:center;
  padding:20px 10px;
  margin-bottom:20px;
  font-weight:bold;
}

.event-card{
  background:#ffe9ab;
  padding:15px;
  margin-bottom:16px;
  border-radius:4px;
}

.event-card h3{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size:16px;
  margin-bottom:6px;
}

.event-card p{
  font-size:13px;
  margin:6px 0;
  line-height:1.5;
}

.event-meta{
  font-size:12px;
  margin-top:8px;
}

@media (min-width: 768px){

  .content-grid{
    display:grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }

  .left-panel{
    display:flex;
    flex-direction:column;
  }

  .upcoming-label{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
}