* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/**** NAV BAR ****/
#navbar {
    background-color: transparent;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 250px;
    transition: all 0.5s ease-in-out;
}
#navbar.active {
    background-color: transparent;
    padding: 30px 50px;
    position: fixed;
    width: 100%;
}
.logo, .menu-bar {
    display: inline-block;
}
.nav_logo {
    height: 4.5rem;
    transition: all 0.3s;
    border-radius: 50%;
}
.logo a {
    font-size: 20px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.menu-bar a {
    font-weight: bold;
}
.menu-bar ul {
    list-style: none;

}

.menu-bar ul li {
    display: inline-block;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    
}

.menu-bar ul li a{
    text-decoration: none;
    padding: 15px;
    font-size: 2rem;
    text-align: center;
    color: #f4f1ed;
    /* text-shadow: 
        0 1px 0 #bbbaba,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15); */

    
}
/**** HEADER SECTION ****/
header {
    text-align: center;
    background-color: rgb(235, 232, 227);
    
    padding-bottom: 100px;
    background-image: url(../img/london_home.jpeg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Animation (Automatic cycle) */
h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: #f9f8f8;
    animation: brighten 2s ease-in-out infinite alternate;
    letter-spacing: 5px;
    padding: 200px 0;
}

@keyframes brighten {
    0% {
        color: #f9f8f8;
        text-shadow: none;
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 20px #ffffff, 0 0 40px #ffffff;
    }
}
/* Text shadow */
/* h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 4rem;
    text-align: center;
    color: #f9f8f8;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
    letter-spacing: 5px;
    padding: 200px 0;
} */
header p {
    font-size: 14px;
    color: white;
    margin-bottom: 25px;
}
header .header-button {
    display: inline-block;
    text-transform: uppercase;
    border: 1px solid rgb(0, 174, 218);
    background-color: rgb(0, 174, 218);
    text-decoration:  none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding:20px 42px;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}
header .header-button:hover {
    color: #00aeda;
    background: #222225;
    border-color: #222225;
}
/**** Works SECTION ****/

#works {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

#works h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#works p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: auto;
}

/* Grid Layout */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 10px;
}

/* Card Styling */
.model-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.model-card:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Caption Styling */
.model-card figcaption {
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}
.iconBox {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.iconContainer {
    width: 30%;
    display: inline-block;
    margin-bottom: 50px;
}
.iconContainer .icon {
    background-color: #00aeda;
    display: inline-block;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.iconContainer .icon i{
    font-size: 45px;
    color: white;
    line-height: 60px;
}
.iconContainer h4 {
    margin-bottom: 20px;
}
.iconContainer p {
    font-size: 15px;
    color: #A1A1A1;
}
/**** contact  SECTION ****/
#contact {
    text-align: center;
    padding: 40px;
}
#contact > h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 30px;
}
#contact > p {
    font-size: 24px;
    padding: 20px;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 30px;
    font-style: oblique;
    font-weight: bold;
}

.contactLeft, .contactRight {
    width: 25%;
    display: inline-block;
    padding-top: 50px;
}
.contactLeft .contactContainer {
    text-align: right;
    margin-bottom: 50px;
    
}
.contactRight .contactContainer {
    text-align: left;
    margin-bottom: 50px; 
}
.contactRight .contactContainer p, .contactLeft .contactContainer p {
    color: #A1A1A1;
    font-size: 17px;
}
.contactLeft .contactContainer i, .contactRight .contactContainer i{
    color: #00aeda;
    display: inline-block;
    font-size: 40px;
    margin-bottom: 20px;
}
.trainer {
    display: inline-block;
    width: 40%;
}
.trainer img {
    max-width: 80%;
}
/**** Features  SECTION ****/
#features {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 100px; 
}
.feature-copy h2 {
    font-size: 37px;
    font-weight: 900;
    margin-bottom: 20px;
}
.feature-img {
    padding-left: 20px;
    padding-right: 20px;
}
.feature-img img {
    max-width: 100%;
}
.feature-img, .feature-copy {
    width: 50%;
}
.feature-copy p {
    font-size: 16px;
    color: #A1A1A1;
    font-style: oblique;
    font-weight: bold;
}
.feature-copy ul {
    margin-top: 30px;
    padding-left: 20px;
}
.feature-copy ul li {
    font-size: 16px;
    color: #A1A1A1;
    font-style: oblique;
    margin-bottom: 15px;
}
/**** Footer  SECTION ****/
footer {
    background-color: #222225;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer h4 {
    color: white;
    font-size: 19px;
    margin-bottom: 10px;
}
.about-trainer, .footer-social, .footer-contact {
    width: 28%;
    text-align: center;
}
.about-trainer p{
    color: #A1A1A1;
    font-size: 15px;
}
.footer-social ul {
    list-style: none;
}
.footer-social ul li:hover {
    margin-bottom: 5px;
    text-decoration: underline;
}
.footer-social ul li a {
    text-decoration: none;
    color: #00aeda;
}
.footer-contact p {
    color: #A1A1A1;
    font-size: 15px;
    margin-bottom: 15px;
}
.footer-contact a {
    text-decoration: none;
    color: #00aeda;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 100;
}

.burger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-menu span:nth-child(1) {
    top: 0px;
}

.burger-menu span:nth-child(2) {
    top: 10px;
}

.burger-menu span:nth-child(3) {
    top: 20px;
}

.burger-menu.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger-menu.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

  /* Add these media queries to your media-queries.css file */
@media screen and (max-width: 768px) {
    .burger-menu {
    display: block;
    margin-right: 20px;
    }
    
    .menu-bar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
    z-index: 99;
    padding-top: 60px;
    }
    
    .menu-bar.active {
    right: 0;
    }
    
    .menu-bar ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    }
    
    .menu-bar ul li {
    margin: 15px 0;
    }
    
    #navbar {
    justify-content: space-between;
    padding: 0 15px;
    }
}

  /* Contact form */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #150808;
    color: #f5f5f5;
    padding: 4px;
}

.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #00ccff;
    font-size: 28px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cccccc;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    background-color: #2d2d2d;
    border: 1px solid #444;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00ccff;
    box-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

textarea {
    height: 150px;
    resize: vertical;
}

button {
    background: linear-gradient(135deg, #00ccff, #0066ff);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #00d8ff, #0077ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

#status-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.success {
    background-color: rgba(0, 128, 0, 0.3);
    color: #90ee90;
}

.error {
    background-color: rgba(255, 0, 0, 0.3);
    color: #ffb6b6;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
        margin: 30px 15px;
    }
}



/* Styles for the image hover effect */
.model-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.model-image:hover {
    transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

#lightbox-caption {
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
    max-width: 80%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #bbb;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
    }
}




/* Language Selector Styles */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.language-btn.active {
    font-weight: 700;
    text-decoration: underline;
}

.language-divider {
    color: #fff;
    margin: 0 5px;
}

@media (max-width: 768px) {
    nav#navbar {
        flex-wrap: wrap;
    }
    
    .language-selector {
        margin: 10px 0;
        justify-content: flex-end;
        width: 100%;
    }
}

/* Image slider */

.slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.02);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    border: none;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Dots indicator */
.dots-container {
    text-align: center;
    padding: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #717171;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #717171;
    transform: scale(1.1);
}