
@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
    box-sizing: border-box; /* makes sure that the content width doesn't go over the screen display size */
}

html {
    scroll-behavior: smooth;
  }
  

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #fbfaf8;
}

h1 {
    font-family: 'Rozha One', serif;
    font-size: 50px;
    line-height: 1;
    color: rgb(14, 14, 14);
    margin: 20px 20px;
    padding: 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 10px;
    color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
}

p{
    font-size: 14px;
    line-height: 2;
}
/* HERO SECTION */
.main-header{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

main{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
}

    .hero {
       
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        background-image: url(../media/hero2_comp.jpg);
        background-size: cover;
        background-position: center;
        filter: grayscale(100%);
        transition: filter 2s ease;
        
    }

    .hero:hover{
        filter: grayscale(0%);
    }

    .btn{
        position: relative;
        cursor: pointer;
        text-align: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transform: translateY(-250px);
    

    }

    .btn .play {
        position: relative;
        width: 50px;
        height: 50px;
        /* background-color: #efefef; */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 20px 25px #27272700;
        margin-right: 20px;
        transition: .7s ease-in-out;
    }

    .btn.active .play{
        box-shadow: 0 0 250px 200vh #272727e8;
        
    }

    .btn .play::before{
        content: "";
        position: absolute;
        border: 30px solid #efefef;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 0px solid transparent;
        transform: translateX(2px);
        transition: .7s ease-in-out;

    }

    .play:hover {
        border: 30px solid #c92127;
            }

    .btn p {
        font-weight: 600;
        text-transform: uppercase;
        color: #efefef;
        letter-spacing: 1rem;
    }

        .clip {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            transition: 1s ease-in-out;
        }

        .clip video {
        max-width: 60%;
        height: 70%;
       
        }

        .clip.active {
            transition-delay: .5s;
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .clip .close {
            position: absolute;
            top: 100px;
            right: 100px;
            cursor: pointer;
            font-weight: 400;
            letter-spacing: 1rem;
            text-transform: uppercase;
            color: #efefef;

        }


    

/* NAVBAR */

hammenu-component {
    display: none;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    hammenu-component {
        width: 100%;
        display: block;
        position: fixed;
        z-index: 9999999;
    }
}

.nav-container{
   
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.bottom-nav {
    position: absolute;
    bottom: 30px;
    transition: .3s ease-in-out;
}

.top-nav {
    position: fixed;
    top: 0px;
    background-color: rgb(119, 119, 119, .6);
    z-index: 3;
    transition: .5s ease-in-out;

}

.nav-container a{
    color: rgb(225, 225, 225);
    text-decoration: none;
}

.nav-left{
    display: flex;
    flex:30%;
    justify-content: space-evenly;
    align-items: center;
}
.nav-center{
    display:flex;
    flex: 10%;
    justify-content: center;
    align-items: center;
}
.nav-right{
    display: flex;
    flex:30%;
    justify-content: space-evenly;
    align-items: center;
}

.nav-links {
    width: 20%;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-links:hover{
    background-color: rgb(225, 225, 225, .8);
    transform: translate(0, -5px);
}

.nav-links:hover > a {
    color: #0e0e0e;
    font-weight: 700;
}
  
.logo-home{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 40px;
    align-items: center;
    
}

    .logo{
        content: "";
        width: 100px;
        
    }
    
.st0 {
    fill: rgb(225, 225, 225);
    transition: 0.8s ease-in-out;
}

.st0:hover{
    fill: #c92127;
    transform: translate(0, -5px);
}




/* BODY */
.intro-text{
    width: 100%;
    display:flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 80px 80px 80px 80px;
    margin-top: 80px;
}

.intro-text h1 {
    text-align: center;
    width: 60%;
   }

   .intro-text p {
    text-align: center;
    width: 70%;
   }

   /* GALLERY */

   .grid-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 20px;
  }
  
  .grid-gallery .grid-item {
    position: relative;
    background-color: #efefef;
    overflow: hidden;
  }
  
  .grid-gallery .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 2s ease;
  }
  
  .grid-gallery .grid-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  .grid-gallery .grid-item a {
    cursor: zoom-in;
  }
  
  .grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  /* Let's make it responsive */
  @media (max-width: 768px) {
    .grid-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* Two columns */
      grid-auto-rows: auto; /* Automatically adjust height based on content */
    }
  
    .grid-gallery .grid-item:nth-child(3n - 2) {
      grid-column: unset;
      grid-row: unset;
    }
  }
  
  /* ABOUT US */

  .about-us{
    
    width: 60%;
    display:flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 80px 80px 0px 80px;
    
}

  .read-more{
    
        width: 60%;
        display:flex;
        flex-direction: column;
        text-align: justify;
        justify-content: center;
        align-items: center;
        padding: 20px 80px 80px 80px;
        
    }
    
    .about-us h1 {
        text-align: center;
        width: 60%;
        margin-bottom: 0px;
       }

       .about-us h2 {
        text-align: center;
        text-transform: uppercase;
        width: 60%;
        margin-bottom: 40px;
       }
    
       .read-more p {
        font-size: 14px;
        line-height: 2;
        text-align:justify;
        width: 100%;
       }

    

       #more {display: none;}

    
           .read-more-btn {
               margin-top: 20px;
               padding: 20px 40px;
               background-color: rgb(251, 250, 248, .5);
               border: 1px solid #c2c2c2;
               cursor: pointer;
               transition: .8s ease-in-out;
           }

       .read-more-btn:hover{
        background-color: rgb(213, 213, 213);
               }


/* OUR STORY - MEET THE TEAM */

.team{
    display: flex;
    width: 100%;
    height: 50vh;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    background-image: url("../media/our-story-bg.jpeg");
    background-size: cover;
    background-position: center;
    filter: grayscale(80%);
    padding: 50px 50px;
}

.meet h1 {
    color: #fbfaf8;
    text-align: left;
    margin-left:0;
}

.meet h2 {
    color: #fbfaf8;
    text-align: left;
    margin-left:0;
}
.meet p{
    width: 400px;
    color: #fbfaf8;
    text-align: left;
    margin-left:0;
}

.meet-btn{
    margin-top: 20px;
    padding: 20px 40px;
    background-color:rgb(251,250,248, .5);
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: .8s ease-in-out;
}

.meet-btn:hover{
    background-color: rgb(251,250,248);
}


/* OUR WEDDINGS */
.our-weddings{
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 160px 200px 160px 200px;

}

.wedding-highlight{
        position: relative;
        display: flex;
        width: 80%;
        height: 75vh;
        justify-content: flex-end;
        align-content: center;
        align-items: center;
        overflow: hidden;
        cursor: pointer;
        
}

.highlight-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(80%);
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 2s ease;
}

.highlight-info{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(211, 211, 211, 0.5);
    color: #fbfaf8;
    padding: 20px 50px;
    text-align: left;
    overflow: hidden;
    transform: translate(0px, 200px);
    transition: .5s ease-in-out;
}
 
.highlight-info h1{
    margin: 0;
    
}

.wedding-highlight a:hover>img{
    scale: 1.1;
    filter: grayscale(0%);
}
.wedding-highlight a:hover > .highlight-info{
    transform: translate(0px, 0px);
}



.our-weddings h1{
    margin: 0;
}

.our-weddings h3{
    margin: 0px 0px -20px 0px;

}
.weddings-portfolio{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    padding: 0px 80px;
    margin-top: 80px;
   
}
.wedding-card{
    position: relative;
    /* min-width: 250px; */
    /* max-width: 300px; */
    width: 300px;
    height: 400px;
    overflow: hidden;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.wedding-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(80%);
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 2s ease;
    
}

.card-info{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(211, 211, 211, 0.8);
    color: #fbfaf8;
    padding: 20px 50px;
    text-align: left;
    overflow: hidden;
    transform: translate(0px, 150px);
    transition: .5s ease-in-out;
}

 
.card-info h1{
    font-size: 20px;
    margin: 0;
    
}
.card-info h2{
    font-size: 15px;
    margin: 0;
    
}

.wedding-card a:hover>img{
    scale: 1.1;
    filter: grayscale(0%);
}
.wedding-card a:hover > .card-info{
    transform: translate(0px, 0px);
}

/* OUR PHILOSOPHY */

.our-philosophy-container {
    background-color: #f0f0f0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding: 80px 80px 0px 80px;
}

.our-philosophy-text{
width: 60%;
display:flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
padding: 80px 80px 0px 80px;
}


.read-more2{

    width: 60%;
    display:flex;
    flex-direction: column;
    text-align: justify;
    justify-content: center;
    align-items: center;
    padding: 20px 80px 80px 80px;
    
}

.our-philosophy-text h1 {
    text-align: center;
    width: 60%;
    margin-bottom: 0px;
   }

   .our-philosophy-text h2 {
    text-align: center;
    text-transform: uppercase;
    width: 60%;
    margin-bottom: 40px;
   }

   .our-philosophy-text p {
    font-size: 14px;
    line-height: 2;
    text-align: center;
    width: 100%;
    text-align: center;
   }

   #more2 {display: none;}


   .read-more-btn2 {
    margin-top: 20px;
    padding: 20px 40px;
    background-color: rgb(251, 250, 248, .5);
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: .8s ease-in-out;
   }

   .read-more-btn2:hover{
    background-color: rgb(213, 213, 213);
           }


/* LETS WORK TOGETHER */

.lets-work{
    display: flex;
    width: 100%;
    height: 1000px;
    text-align: center;
    padding: 80px 80px 80px 80px;
}

.left{
    position: relative;
    flex: 33.33%;
}

.center{
    display: flex;
    flex: 33.33%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.right{
    position: relative;
    flex: 33.33%;
}
.work-textbox{
    width:100%;
    text-align: center;
    justify-content: center;
    margin-top: 500px;
    background-color: #f0f0f0;
    padding: 40px 20px;
    /* box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2); */
   

}

.work-textbox h1{
    font-weight: 100;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 80px;

}

.work-textbox h2{
    font-weight: 100;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    

}

.top-left{
    position: absolute;
    top: 0;
    left: -100px;
    width: 800px;
    height: 300px;
    overflow: hidden;
    object-fit: cover;
    z-index: -1;
   
}

.bottom-left{
    position: absolute;
    bottom: -300px;
    left: -50px;
    width: 500px;
    height: 600px;
    overflow: hidden;
    object-fit: cover;
    
    z-index: -1;
}

.middle-right{
    position: absolute;
    top: 200px;
    right: -50px;
    width: 500px;
    height: 600px;
    overflow: hidden;
    object-fit: cover;
    z-index: -1; 
}

.lets-work-btn {
    margin: 40px 0px;
    padding: 15px 40px;
    background-color: rgb(251, 250, 248, .5);
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: .8s ease-in-out;
    text-decoration: none;
   }


.lets-work-btn:hover {
    background-color: rgb(213, 213, 213);
   
    
}


/* TESTIMONIALS */

.testimonials-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 200px;
    padding: 80px 100px 80px 100px;
    justify-content: center;
    align-items: center;
}

.testimonials-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.testimonials-header>p {
    width: 60%;
    text-align: center;
    
}

.testimonials-header>h1 {
    margin-bottom: 0px;
}

.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  
  .grid-col {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }


.testimonial-card {
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
    width:300px;
    border: 1px solid #c2c2c2;
    padding: 10px 10px;
    margin:30px 3px;
  
}

.testimonial-card img {
    width: auto;
    max-height: 600px;
    object-fit: cover;
    align-items: center;
}

.testimonial-card h2 {
    color: rgb(217, 191, 149);
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    margin: 0px 15px;
}

/* INSTAGRAM */
.instagram{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:auto;
    text-align: center;
    background-color: rgb(240, 240, 240);
    padding: 80px 80px;
}

.instagram a{
    text-decoration: none;
    color: #000;
}

.instagram h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.instagram p {
margin: 0;
}
.instafeed{
    width: 100%;
    height: auto;
    margin-top: 40px;
    
}


/* LINK TO STUDIO */

.studio{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-image: url(../media/Lejla-BW_comp.jpg);
    background-size: cover;
    background-position-y: -300px;
    width: 100%;
    height: 400px;
    
}

.studio-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    text-align: center;
    padding-right: 160px;
}
.studio-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 200px;
    height:50px;
    text-align: center;
    background-color:rgb(251,250,248, .5);
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: .8s ease-in-out;
}




.studio-btn:hover {
    background-color: rgb(251,250,248);
  }

  .studio-text a {
    color:#0e0e0e;
    text-decoration: none;
  }

footer-component{
    width: 100%;
    height: 100%;
}

mobile-footer {
    display:none;
}