

:root {
    --gold: #f1dc88;
    --green: #7a8c7d;
    --textgrey: #d3d3d3;
    --textdark: #272727;
    --textdark2: #707070;
    --borders: #ececec;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Lora', serif;
    background-color: #fff;
    overflow-x: hidden;
}

.animated-text {
    font-size: 4.3rem;
    letter-spacing: -8px;
    font-family: 'Dancing Script', cursive;
    color: rgb(219, 219, 219);
}

.slide-up span {
    display: inline-block;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.5s forwards;
}
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.slide-up span:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
}


h1{
    font-family: 'Lora', serif;
    color: #272727;
    font-size: 4rem;
    padding-bottom: 12px;
}

h2{
    font-family: 'Lora', serif;
    color: var(--textgrey);
    font-size: 1.4rem;
    line-height: 2.4rem;
}

h3{
    font-family: 'Lora', serif;
    color:#bebebe;
    font-size: 1.8rem;
    font-weight: 600;
}

.top-left-logo {
    max-width: 110px;
}


.square-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 70px;
    background-color: #272727;
    color: white;
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-top: 1.9rem;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .1s ease-in-out;
}

.square-button:hover {
    transform: scale(1.02);
    font-weight: 500;
}



.instagram-media {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.instagram-media a {
    text-decoration: none !important;
}

.instagram-media a:hover,
.instagram-media a:focus {
    background: none !important;
    border: none !important;
}


.fixed-menu-blog {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    text-align: right;
    justify-content: right;
    align-content: right;
    gap: 20px;
    background: rgba(255, 255, 255);
    padding: 15px 30px 10px 30px;
    z-index: 1000;

}
.fixed-menu-blog a {
    color: #272727;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: .5px;
}
.fixed-menu-blog a:hover {
    text-decoration: none;
    color: #272727;
    font-weight: 500;
}


        .grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }

        .team{
            text-align: left; padding-left: 25px; padding-right: 55px
        }


.card-body {
    padding: 0px;
    text-align: left;
    border: 0;
}

.card {
    border: 0;
}


.card a {
    background-color: transparent !important;
}

p {
    color: #272727;
    font-size: 1.2rem;
    font-family: 'Lora', serif;
}


.bg-container {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.bg-cover {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 102%;
    height: 102%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('images/Wedding_Planners_NC.webp');
    z-index: 0;
}

.bg-overlay {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 102%;
    height: 102%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    min-width: 250px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 12;
    font-family: 'Lora', serif;
    overflow: visible;
}

.centered-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    padding: 20px 35px;
    border: 1px solid var(--gold);
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Lora', serif;
}

.centered-text a:hover {
    background-color: var(--gold);
    color: #424242;
    font-weight: 500;
}

.gallery-image {
    display: inline-block;
    margin: 10px;
}

.gallery-image img {
    width: 100%;
    height: 320px;
    border: 1px solid var(--gold);
    padding: 0px;
    text-decoration: none;
    cursor: pointer;
    object-fit: cover;
}


.image-shadow {
    box-shadow: 0 10px 10px 4px rgba(120, 120, 120, 0.1);
    border: 1px solid var(--gold);
}


/*BLOGS*/
.blog-grid {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.latest-blog-post-date {
    color: #8c8a92;
    font-size: 0.9rem;
    line-height: 1.1rem;
    }

.latest-blog-container {
    margin-top: 50px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.latest-blog-card {
    margin-bottom: 30px;
    margin-top: 10px;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}


.latest-blog-post-card {
    width: 100%;
    transition: transform 0.3s ease;
    background-color: white;
    border: 1px solid var(--borders);
}

.latest-blog-card:hover .latest-blog-post-card {
    transform: scale(1.02);
}

.blog-grid .latest-blog-post-card a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    padding: 0;
    font-weight: normal;
    font-size: inherit;
    border-radius: 0;
    margin-left: 0;
}

.blog-grid .latest-blog-post-card a:hover {
    color: inherit;
}

.latest-blog-card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.latest-blog-card-title {
    font-family: 'Lora', serif;
    color: #272727;
    margin-top: 14px;
    font-weight: 700;
    line-height: 1.7rem;
    font-size: 1.4rem;
}

.latest-blog-card-body p {
    text-align: left;
    margin-bottom: 0;
    padding-left: 0;
    padding-bottom: 20px;
    color: #484558 !important;
    font-size: 1rem !important;
    line-height: 1.2rem;
    font-family: 'Lora', serif;
}

.latest-blog-card-text {
    color: #484558 !important;
    font-size: 1rem !important;
    line-height: 1.2rem;
    padding-left: 0px !important;
    font-family: 'Lora', serif;
}

.latest-blog-card-body {
    padding: 15px 25px;
}





.blog-card {
    flex: 1 1 calc(25%);
    min-width: 250px;
    justify-content: space-between;
    margin: 20px;
    padding: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    }
    
    .blog-card:hover {
    transform: scale(1.02);
    }
    
    .blog-single {
    padding: 0px;
    margin: 0px auto;
    max-width: 1000px;
    background-color: #fff;
    border: 1px solid var(--borders);
    }
    
    .blog-single img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
    }
    
    .blog-single h2 {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 700;
    padding: 0px 20px;
    color: var(--textdark);
    }
    
    .blog-recommendations {
    margin-top: 50px;
    padding: 20px;
    max-width: 1200px;
    text-align: center;
    }
    
    .blog-recommendations .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }
    

    .gallery-container {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 10px;
        text-align: right;
        border-radius: 8px;
    }
    .overlay .icon {
        font-size: .8rem;
        margin-right: 5px;
    }
    .overlay .photographer {
        font-size: 1rem;
        font-weight: 500;
        display: inline;
        color: white;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        padding: 5px 8px;
        text-decoration: none;
    }

    .overlay .photographer a {
        color: #fff;
        text-decoration: none;
    }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form-label{
    font-family: 'Lora', serif;
    color: #272727;
    font-size: 1.2rem;
}

.carousel-container {
    width: 100%;
    padding: 25px;
    background-color: #fff;
    z-index: 50;
}

.carousel {
    display: flex;
    animation: scroll 30s linear infinite;
}

.quote-card {
    flex: 0 0 auto;
    width: 500px;
    margin: 10px;
    background: transparent;
    padding: 20px 40px;
    text-align: center;
    font-size: 1.1rem !important;
    border: 1px solid var(--borders);
    justify-content: center;
    align-content: center;
}

.carousel.scroll {
    display: flex;
    animation: scroll-left-to-right 60s linear infinite;
}
@keyframes scroll-left-to-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.carousel img {
    width: 230px;
    height: 300px;
    object-fit: cover;
    margin-right: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.carousel img:hover {
    transform: scale(1.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}


.carousel-container:hover .carousel {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/*MOBILE*/

@media (max-width:850px) {

h1, h3, h2, p{
    text-align: center !important;
}

h1{
    font-size: 2.8rem !important;
}

.grid-item {
    padding: 1rem !important;
}

.fixed-menu{
width: 80% !important;
}
.team{
    padding: 0px;
}

.square-button{
    margin: 0 auto;
}

.mobile-hide {
    display: none;
    visibility: hidden;
    height: 0px;
}

.mobile{
    margin-top: 150px;
    font-size: 2rem;
    padding: 0px 10px;
}

.grid-item.text {
padding: 3rem 4rem 0rem 4rem !important;
} 

.content-section {
    margin: 0px;
    text-align: center;
    padding: 0px 30px;
}

.content-section img {
    object-fit: cover;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

.content-section h2 {
    text-align: center;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.content-section p {
    text-align: center;
    margin-bottom: 20px;
    padding: 0px 20px;
}

.gallery {
    flex-direction: column !important;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.gallery-image {
    width: 100%;
    border: 0px;
}

.gallery-image img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
    border: 0px;
}

.top-left-logo {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    z-index: 99;
}

    .carousel img {
        width: 150px;
        height: 100px;
        margin-right: 10px;
    }

    .carousel-container {
        width: 100%;
    }
}


@media (max-width: 480px) {
    .carousel img {
        width: 120px;
        height: 80px;
        margin-right: 8px;
    }
}





