* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #000;
    font-family: system-ui;
}

a {
    text-decoration: none;
    color: #fff;
}

header {
    background-color: #474747;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
}

header .logo {
    font-size: 40px;
    font-weight: 800;
    margin-left: 40px;
    text-transform: uppercase;
}

.logo span { color: #e97121; }

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    text-transform: uppercase;
}

header ul li { margin-right: 30px; }

header ul li a {
    padding: 6px 15px;
    border-radius: 20px;
}

header ul li a:hover { background: #fff; color: #200016; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Main Section */
.main {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main img {
    position: absolute;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.main h2, .main h4, .joinButton {
    position: absolute;
    text-align: center;
}

.main h4 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 150px;
}

.main h2 {
    color: #e97121;
    font-size: 90px;
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 30px;
}

.main span { color: #fff; }

.joinButton {
    color: #fff;
    background-color: #e97121;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border-radius: 15px;
    padding: 10px 20px;
    letter-spacing: 1px;
    margin-top: 200px;
    margin-bottom: 30px;
    transition: 0.8s ease;
}

.joinButton:hover { background-color: #d95700; }

.facebook, .linkedin, .instagram {
    position: absolute;
    color: #fff;
    font-size: 30px;
    margin-top: 300px;
}

.facebook { margin-right: 100px; }
.instagram { margin-left: 100px; }

/* Cards & Options */
.classes { background-color: #474747; }
.title { color: #fff; display: flex; justify-content: center; text-transform: uppercase; font-size: 40px; font-weight: 800; margin: 60px 0 40px; }
.classes .content p { font-weight: 900; line-height: 1.5; }
.content, .content2 { display: flex; justify-content: center; flex-wrap: wrap; }
.card, .option1, .option2, .option3 { margin: 15px; border-radius: 15px; box-shadow: 0 10px 15px rgba(1,1,1,0.3); transition: 0.8s ease; }
.card { width: 400px; border: 1.5px solid wheat; background: transparent; }
.card img { width: 400px; height: 500px; border-radius: 15px; }
.card:hover { transform: scale(1.03); }
.card h3 { color: #fff; font-size: 30px; font-weight: 800; padding: 10px; }
.card p { color: #fff; padding: 10px; text-align: center; }

.option1 { background-color: rgb(163,80,50); width: 300px; height: 500px; padding: 20px; }
.option2 { background-color: rgb(230,172,115); width: 300px; height: 500px; padding: 20px; }
.option3 { background-color: rgb(215,130,78); width: 300px; height: 500px; padding: 20px; }
.content2 h2 { font-size: 20px; font-weight: 700; color:#000; padding:10px; margin-bottom: 20px; }
.content2 h3 { font-size: 15px; font-weight: 700; padding-left: 10px; }
.content2 span { font-size: 50px; font-weight: 900; }
.content2 ul { padding: 20px; font-size: 20px; font-weight: 500; }

.join-plans1, .join-plans2, .join-plans3 {
    color:#fff; display:inline-block; background:#000; letter-spacing:1px; font-size:12px; font-weight:500;
    border-radius:10px; transition:0.8s ease;
}
.join-plans1 { padding:10px 42px; margin-top:132px; }
.join-plans2 { padding:10px 46px; margin-top:53px; }
.join-plans3 { padding:10px 30px; }
.join-plans1:hover, .join-plans2:hover, .join-plans3:hover { /* no scale transform */ }

/* Contact Us */
.contact-us img { width:100%; height:600px; filter:blur(4px); }
.contact-us { background-color:#000; }
.contactInfo { background-color: antiquewhite; display:flex; flex-flow:row; align-items:center; justify-content:space-around; }
.contactInfo h1 { color:black; }
.contactInfo p, .contactInfo h2 { font-style:italic; font-size:x-large; font-weight:bold; color:black; }
.contactInfo a { padding:10px; color:orangered; font-size:x-large; }
.contactInfo a i:hover { transform: scale(1.2); }
.contactInfo h3 { display:flex; color:#fff; position:absolute; font-size:70px; font-weight:900; letter-spacing:1px; margin-bottom:700px; }

/* Arrows - only appear inside .main */
.main #leftb, .main #rightb {
    color: #fff;
    background-color: #d95700;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    z-index: 10;
}

.main #leftb { left: 20px; }
.main #rightb { right: 20px; }

/* Small screens */
@media (max-width: 992px) {
    .main #leftb, .main #rightb {
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .main #leftb, .main #rightb {
        font-size: 14px;
        padding: 6px 10px;
        top: 45%;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    header { flex-wrap:wrap; justify-content:space-between; padding:10px 20px; }
    header ul { display:none; flex-direction:column; width:100%; background:#474747; margin-top:10px; }
    header ul.active { display:flex; }
    header ul li { margin:10px 0; text-align:center; }
    .hamburger { display:flex; }
    .main h2 { font-size:50px; text-align:center; margin-top:50px; }
    .main h4 { font-size:20px; text-align:center; margin-top:20px; }
    .joinButton { margin-top:120px; font-size:14px; padding:8px 15px; }
    .facebook, .linkedin, .instagram { font-size:24px; margin-top:200px; position:relative; display:inline-block; }
    .card, .card img, .option1, .option2, .option3 { width:90%; max-width:350px; height:auto; }
    .content2 ul { font-size:16px; }
    .contactInfo { flex-direction:column; align-items:flex-start; gap:20px; text-align:center; }
}

@media (max-width: 480px) {
    .main h2 { font-size:36px; }
    .main h4 { font-size:16px; }
    .joinButton { padding:6px 12px; font-size:12px; }
    .facebook, .linkedin, .instagram { font-size:20px; margin:10px; }
}
