/* Use the Typekit font for the entire website */
body, html {
    margin: 0;
    font-family: 'chauncy-pro', sans-serif;
    background-color: #FF4136;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

/* Menu Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    font-size: 48px;
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.menu li a:hover {
    color: #FFD700;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 75px;
    height: 75px;
    margin-left: 15px;
    cursor: pointer;
}

.social-icon  :hover{
    filter: brightness(1.75);}

/* Make the menu responsive for mobile */
@media (max-width: 767px) {
    nav {
        display: flex;
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .social-icons {
        display: flex;
    }
}

@media (min-width: 768px) {
    .social-icons {
        display: flex;
    }
}

/* Hero Section */
#hero {
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 90vh; /* Full viewport height */
}

#title-image {
    width: 40vw; /* Title image takes 50% of viewport width */
    height: auto;
}

#hero-video {
    width: 50vw; /* Video takes 75% of the viewport width */
    height: auto;
    display: none; /* Hidden until the "Enter" button is clicked */
}

/* Ensure the title and video together fit on the screen */
@media (max-width: 768px) {
    #title-image, #hero-video {
        width: 90vw;
        margin-top: 10vh; /* Smaller screens adjust both the title image and video */
    }
}

h2 {
    font-size: 75px;
}

h3 {
    font-size: 45px;
}

p {
    font-size: 24px;
}

#contact {
    font-size: 40px;
}

#ca {
    font-family: "Barlow Condensed";
    font-size: 22px;
}

/* 3D Button Effect */
button {
    font-family: 'chauncy-pro', sans-serif;
    margin:20px;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-top: 4px solid #FFD700;  /* Border on top */
    background-color: #FFD700;
    color: #000000;
    font-size: 30px;
    cursor: pointer;
    border-radius: 8px; /* Rounded corners */
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    filter: brightness(1.75);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-top: 2px solid transparent; /* Remove top border */
    border-bottom: 4px solid #FFD700;  /* Add bottom border on press */
}

/* Scroll to Top Button */
#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #001f3f;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
}

#scroll-top.show {
    display: block;
}

/* Section Styles */
section {
    margin-top: 10vh;
}

#about img {
    width: 25vw;
    height: auto;
}

#bottom-image {
    width: 25vw;
    height: auto;
}

/* Ensure the title and video together fit on the screen */
@media (max-width: 768px) {
    #about img{
        width: 80vw;
        height: auto;
    }

    #bottom-image {
        width: 80vw;
        height: auto;
    }
}

#welcome-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 10vw;
}

#welcome-screen h1 {
    margin: 0px;
}

#welcome-screen button {
    font-size: 5vw;
    font-family: 'chauncy-pro', sans-serif;
}
