/*=====================================
RESPONSIVE DESIGN
======================================*/

/* ---------- Large Laptop ---------- */

@media (max-width:1200px){

.container,
.navbar{

    width:95%;

}

.hero-content h1{

    font-size:70px;

}

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

.navbar{

    flex-direction:column;

    gap:20px;

}

.nav-links{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.hero-content h1{

    font-size:55px;

}

.hero-content p{

    font-size:18px;

}

.about-container,
.contact-wrapper{

    grid-template-columns:1fr;

}

.course-grid,
.gallery-grid,
.notice-grid,
.why-grid,
.counter-grid{

    grid-template-columns:repeat(2,1fr);

}

.event-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

#hero{

    min-height:700px;

}

.logo img{

    width:60px;
    height:60px;

}

.logo-text h2{

    font-size:22px;

}

.logo-text span{

    font-size:11px;

}

.nav-links{

    flex-direction:column;

    align-items:center;

    gap:15px;

}

.hero-content h1{

    font-size:42px;

}

.hero-content p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.btn{

    width:220px;

    text-align:center;

}

.section-title h2{

    font-size:34px;

}

.about-content h2{

    font-size:36px;

}

.about-features{

    grid-template-columns:1fr;

}

.course-grid,
.gallery-grid,
.notice-grid,
.why-grid,
.counter-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

}

.copyright{

    flex-direction:column;

    text-align:center;

}

.contact-buttons{

    flex-direction:column;

}

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

.hero-content h1{

    font-size:34px;

}

.hero-tag{

    font-size:13px;

}

.section-title h2{

    font-size:28px;

}

.hero-content p{

    font-size:15px;

}

.btn{

    width:100%;

}

.contact-form{

    padding:25px;

}

.info-box{

    padding:20px;

}

}



/* Contact Page */

@media (max-width:768px){

.contact-page-grid{

grid-template-columns:1fr;

}

.map-section{

height:300px;

}

}



/* Mobile Navigation */

@media (max-width:992px){

.nav-links{

display:none;

}

.nav-btn{

display:none;

}

.menu-toggle{

display:block;

}

}



@media(max-width:992px){

.theme-toggle{

margin-right:0;

margin-left:auto;

}

}