/* Photography page stylesheet */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #1a1a1a;
    overflow-x: hidden;
    touch-action: manipulation;
}
header {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}
h3 {
    font-size: 36px;
    text-transform: uppercase;
}
p {
    font-size: 16px;
}
main {
    color: #fff;
}
section {
    margin: 60px auto;
}
.desktop-menu {
    background-color: #fff;
    text-align: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    text-transform: uppercase;
}
.desktop-menu nav ul {
    list-style-type: none;
    padding: 6px;
}
.desktop-menu nav ul li {
    display: inline-block;
    padding: 0px 15px;
    margin: 0px;
}
.desktop-menu nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}
.desktop-menu nav a:hover {
    background-color: #ddd;
}
.logo {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 98;
}
.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}
.hamburger-menu.active {
    transform: translateX(0);
}
.hamburger-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    padding: 0;
}
.hamburger-menu ul li {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.hamburger-menu a {
    text-decoration: none;
    color: #fff;
}
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 99;
}
.close {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}
.hamburger-menu.active .close {
    display: block;
}
.landing-text {
    text-align: left;
    padding: 0 30px;
    width: 90%;
}
.landing-text p {
    margin-top: -20px;
    font-size: 22px;
    color: #fff;
}
.background-container {
    position: relative;
    height: 100vh;
}
#background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.funnel-button {
    display: inline-block;
    text-align: center;
}
.funnel-button a {
    font-size: 22px;
    display: block;
    border: 3px solid #dc1e1e;
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    color: #dc1e1e;
    font-weight: bold;
}
.funnel-button a:hover {
    background-color: #dc1e1e;
    color: #fff;
}
button {
    font-family: "Montserrat", sans-serif;
}
#next-button {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    padding: 5px 20px;
    font-size: 72px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #1a1a1a;
    color: #fff;
    opacity: 80%;
    cursor: pointer;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
}
#next-button:hover {
    opacity: 100%;
}
footer {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    background-color: #1a1a1a;
    color: #fff;
}
@media only screen and (max-width: 1500px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 36px;
    }
    p {
        font-size: 12px;
    }
    .desktop-menu {
        display: none;
    }
    section {
        margin: 60px auto;
        padding: 15px;
    }
    section p {
        font-size: 22px;
    }
    .landing-text p {
        font-size: 20px;
    }
    .funnel-button a {
        font-size: 22px;
    }
    #next-button {
        font-size: 44px;
        opacity: 90%;
    }
    #next-button:hover {
        opacity: 90%;
    }

    @media only screen and (max-width: 480px) {
        h1 {
            font-size: 36px;
        }
        h2 {
            font-size: 24px;
        }
        h3 {
            font-size: 30px;
        }
        p {
            font-size: 11px;
        }
        .desktop-menu {
            display: none;
        }
        section {
            width: 100%;
            margin: 60px auto;
            padding: 10px;
        }
        section p {
            font-size: 20px;
        }
        .landing-text p {
            font-size: 20px;
        }
        .funnel-button a {
            font-size: 20px;
        }
        #next-button {
            font-size: 32px;
			opacity: 90%;
			padding: 5px 12px;
        }
        #next-button:hover {
			opacity: 90%;
        }
    }
}

@media only screen and (min-width: 1499px) {
    .logo {
        display: none;
    }
    .hamburger {
        display: none;
    }
    .hamburger-menu {
        display: none;
    }
}
