*{
    font-family: 'Franklin Gothic Medium',  sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* nav bar  */

nav{
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: white;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

nav h1 a{
    font-family: "Playwrite AU NSW", cursive;
    color: black;
    font-size: 30px;
    text-decoration: none;
}

nav ul li{
    display: inline;
    padding: 7px;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

nav ul li a:hover{
    text-decoration: underline;
}

nav h1 a:hover{
    transform: scale(1.1);
    transition: transform 1s;
    color: blue;
}

/* Dark mode */
body.dark-mode {
  background-color: black;
  color: #ffffff;
}

body.dark-mode nav{
    background-color: black;
}

body.dark-mode nav h1 a{
    color: white;
}

body.dark-mode nav ul li a{
    color: white;
}


body.dark-mode nav h1 a:hover{
    transform: scale(1.1);
    transition: transform 1s;
    color: yellow;
}

body.dark-mode .hamburger {
    color: #ffffff;
}

#darkModeToggle {
    padding: 5px 11px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background-color: black;
    transition: all 0.3;
}

#darkModeToggle:hover {
    transform: scale(1.1);
    transition: transform 1s;
}

body.dark-mode #darkModeToggle{
    background-color: white;
}



/* hamburger */

.hamburger{
    display: none;
}

/* contact us section  */

.one{
    background-image: url("IMG_7501.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    margin-top: 90px;
    padding: 10px 30px;
    align-items:center;
    text-align: center;
}

.one h6{
    font-size: 100px;
    font-family: "Playwrite AU NSW", cursive;
    font-style: italic;
    /* margin-bottom: 30px; */
    /* margin-top: 100px; */
    color:bisque;
    text-shadow: -2px -2px 0 black,
    2px -2px 0 black,
    -2px 2px 0 black,
    2px 2px 0 black;
}

.one h1 {
    font-size: 100px;
    font-family: cursive;
    font-style: italic;
    margin-bottom: 30px;
    /* margin-top: 100px; */
    color: white;
    text-shadow: -2px -2px 0 black,
    2px -2px 0 black,
    -2px 2px 0 black,
    2px 2px 0 black;  
}

.two {
    display: flex;
    padding: 10px 30px;
    justify-content: space-around;
    margin-top: 30px;
}

.two h2{
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
}

.two h3{
    font-size: 30px;
    margin-top: 40px;
}

.two p{
    margin-top: 10px;
}

.two .okay {
    padding-right: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 5px;
    background-color: rgb(231, 218, 218);
    border: none;
    margin-top: 30px;
}

.two button{
    padding: 10px 30px;
    margin-top: 30px;
    border: none;
    background-color: green;
    border-radius: 10px;
}

.two button a {
    text-decoration: none;
    font-size: 20px;
    color: white;
}

footer{
    padding: 10px 30px;
    background-color: black;
    align-items: center;
    text-align: center;
}

footer h1{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}

footer p{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    margin-top: 10px;
}

/* back to top button  */
/* Back-to-top button */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  border: none;
  outline: none;
  background-color: rgba(51, 51, 51, 0.8); /* semi-transparent dark */
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

/* Arrow inside the button */
#backToTop svg {
  fill: white;
  transition: transform 0.3s, fill 0.3s;
}

/* Hover effect */
#backToTop:hover {
  background-color: rgba(85, 85, 85, 0.9);
  transform: translateY(-5px); /* slight jump on hover */
}

/* Dark/Light mode toggle example */
body.light-mode #backToTop {
  background-color: rgba(240, 240, 240, 0.8);
}

body.light-mode #backToTop svg {
  fill: #333;
}


/* media view  */
@media screen and (max-width:768px){

    nav a img{
    width: 35%;
    }
    
    nav ul{
        display: none;
        /* hambuger design */
        flex-direction: column;
        background: rgb(73, 65, 65);
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px 15px;
        border-radius: 10px;
    }

    nav ul li a{
        color: white;
    }

    /* hambuger */

    .nav-links.active{
        display: flex;
    }

    nav h1 a{
        font-size: 20px;
    }

    .hamburger{
        display: block;
    }

    /* end of .hamburger */


    .one{
        height: 55vh;
        width: 100%;
        /* padding: 20px; */
        /* text-align: center; */
    }

    .one h6 {
        font-size: 30px;
        margin-top: 70px;
    }

    .one h1 {
        font-size: 50px;
        margin-top: 10px;
    }

    .two{
        flex-direction: column;
    }

    .two h2{
        margin-top: 50px;
        font-size: 45px;
        /* color: blue; */
    }

    .form{
        margin-top: 10px;
    }

    .two .okay {
    padding-right: 100px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 5px;
    background-color: rgb(231, 218, 218);
    border: none;
    margin-top: 30px;
    }

    footer h1{
        font-size: 13px;
    }

    footer p{
        font-size: 15px;
    }
}