@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a
{
    text-decoration: none;
    color: #222;
}

::-webkit-scrollbar {
    display: none;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

/* hero section */
.photography-hero {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/assets/images/ph-hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;


    .ph-hero-Container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        background: linear-gradient(20deg, #000, #ffffff00);


        h1{
            font-size: 6rem;
            line-height: 7rem;
            color: #fff;
            padding-left: 30px;
        }

        p{
            font-size: 1.1rem;
            color: #fff;
            padding-left: 30px;
            margin-bottom: 50px;
            max-width: 800px;
        }
    }
}

@media only screen and (max-width:768px) {
    .photography-hero{
        /* margin: 0; */
        padding: 0;

        .ph-hero-Container{
            margin: 0;
            padding: 0;
            min-height: 90vh;

            h1{
                font-size: 3rem;
                line-height: 3.5rem;
                padding-left: 20px;
            }

            p{
                font-size: 1rem !important;
                padding-left: 20px;
            }
        }
    }
}
/* hero section */

/* photography showcase cards section */
.photography-show-Section{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .photography-show-Container{
        width: 100%;
        max-width: 1800px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 50px 0;

        .photography-Cards{
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 50px;
            flex-wrap: wrap;

            .photo-Card{
                width: 30%;
                height: auto;
                min-height: auto;
                max-height: auto;
                overflow: hidden;
                border-radius: 12px;
                padding-bottom: 10px;
                background-color: #fff;
                border: 1px solid #d1920040;

                img{
                    width: 100%;
                    height: 500px;
                    object-fit: cover;
                    margin-bottom: 10px;
                }

                h3{
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 5px;
                    padding-left: 10px;
                }

                .ph-date{
                    font-size: 16px;
                    color: #1d1d1d;
                    padding-left: 10px;
                    /* margin-bottom: 50px !important; */
                }

                > p{
                    font-size: 1rem;
                    color: #222;
                    padding-left: 10px;
                    padding-right: 10px;
                    margin-bottom: 10px;
                }

                > a{
                    font-size: 1rem;
                    color: #d19200;
                    padding-left: 10px;
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .photography-show-Section{
        padding: 0 10px;

        .photography-show-Container{
            margin: 30px 0;

            .photography-Cards{
                gap: 20px;

                .photo-Card{
                    width: 100%;
                }
            }
        }
    }
}
/* photography showcase cards section */