@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;
}

.couple-Photo {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    /* min-height: 600px; */
    /* max-height: auto; */

    h1 {
        font-size: 3.5rem;
        line-height: 4rem;
        margin-bottom: 20px;
        color: #1d1d1d;
        margin-top: 180px;
    }

    .location {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #222;
    }

    >p {
        font-size: 1rem;
        max-width: 1200px;
        text-align: center;
        color: #333;
        margin-bottom: 150px;
    }

    .couple-photography {
        width: 100%;
        height: auto;
        column-count: 4;
        column-gap: 1rem;
        margin: 10px auto;

        .couple-photo-item {
            /* display: inline-block; */
            width: 100%;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 16px var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;

            img{
                width: 100%;
                /* float: left; */
                display: inline-block;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .couple-Photo{
        padding: 0 10px;

        h1{
            font-size: 2rem;
            line-height: 2.5rem;
            margin-top: 50px;
        }

        p{
            margin-bottom: 50px;
        }

        .couple-photography{
            column-count: 2;
        }
    }
}

 .image-preview-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    z-index: 9999;
  }

  .image-preview-modal.active {
    visibility: visible;
    opacity: 1;
  }

  .image-preview-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: transform .3s ease;
  }

  .close-preview {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 38px;
    cursor: pointer;
    color: #fff;
    z-index: 10000;
  }

  .close-preview:hover {
    opacity: 0.7;
  }