/*

Template 2101 Insertion

http://www.tooplate.com/view/2101-insertion

*/


body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 17px;
    font-weight: 300;
    color: #666666;
    overflow-x: hidden;
}

a { transition: all 0.3s ease; }
a:hover, a:focus, a.active {
    color: #E7A7C0;
    text-decoration: none;
}

.tm-welcome-section {
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E7A7C0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../img/insertion-header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    max-height: 800px;
    min-height: 500px;
    position: relative;
    padding: 120px 0 60px;
}

.tm-fa-big { font-size: 5em; }
.tm-fa-mb-big { margin-bottom: 3rem; }

.tm-navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav { margin-right: 0; }
.nav-link { 
    font-size: 1.2rem; 
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: white;
}

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
        padding: 15px;
        margin-top: 10px;
    }
    
    .nav-link:after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(231, 167, 192, 0.3);
        border-radius: 4px;
    }
}

.tm-site-description {
    font-size: 1.6rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.tm-welcome-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    z-index: 10;
}

.tm-welcome {
    width: 100%;
}

.navbar-expand-sm .navbar-nav .nav-link { padding: 10px 20px; }
.navbar-nav { flex-direction: row; }

/* Logo styling */
.logo-img {
    height: 50px;
    width: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .logo-img {
        height: 40px;
    }
}

.logo-text { 
    font-size: 3.5rem; 
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .logo-text {
        font-size: 2.2rem;
    }
    
    .tm-site-description {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .mr-3 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .tm-welcome-section {
        padding-top: 60px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-image-container {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tm-welcome-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-image-container {
        margin-bottom: 30px;
    }
}

.tm-bg-gray { background-color: #F2F2F2; }
.tm-bg-pink-light { background-color: #f9e3eb; }

.tm-text-blue { color: #E7A7C0; }
.tm-text-pink { color: #E7A7C0; }
.tm-text-blue-dark { color: #E7A7C0; }
.tm-text-white { color: #fff; }

/* Footer link styling */
.footer-links a {
    color: #E7A7C0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d898b0;
    text-decoration: underline;
}

.rounded {
    border-radius: 10px !important;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero section styling */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease-in-out;
    border: 4px solid rgba(255, 255, 255, 0.2);
    padding: 0;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 167, 192, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.05);
}

.hero-image-container:hover .hero-banner-image {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #E7A7C0;
    border-color: #E7A7C0;
    box-shadow: 0 4px 15px rgba(231, 167, 192, 0.4);
}

.hero-buttons .btn-primary:hover {
    background-color: #d898b0;
    border-color: #d898b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 167, 192, 0.6);
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-down {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-down:hover {
    color: #E7A7C0;
}

.tm-albums-container {
    margin: 80px auto;
    max-width: 260px;
}

.tm-album-col {
    display: flex;
    justify-content: center;
}

/*---------------*/
/***** Sadie *****/
/*---------------*/

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
}

.grid figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    color: #fff;
    backface-visibility: hidden;
}

figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(231,167,192,0) 0%, rgba(231,167,192,0.8) 75%);
    background: linear-gradient(to bottom, rgba(231,167,192,0) 0%, rgba(231,167,192,0.8) 75%);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0,50%,0);
    transform: translate3d(0,50%,0);
}

figure.effect-sadie h2 {
    font-size: 1.5rem;
    padding: 1.2rem;
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0,-80%,0);
    transform: translate3d(0,-80%,0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.2rem;
    margin-bottom: 0;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
}

figure.effect-sadie:hover h2 {
    opacity: 1;
    -webkit-transform: translate3d(0,-50%,0) translate3d(0,-10px,0);
    transform: translate3d(0,-50%,0) translate3d(0,-10px,0);
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/*---------------*/
/***** About Section - Visible Text *****/
/*---------------*/

figure.effect-visible-text {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    height: 100%;
}

figure.effect-visible-text img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure.effect-visible-text:hover img {
    transform: scale(1.05);
}

figure.effect-visible-text figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    color: #fff;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

figure.effect-visible-text figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(231,167,192,0) 0%, rgba(231,167,192,0.8) 75%);
    background: linear-gradient(to bottom, rgba(231,167,192,0) 0%, rgba(231,167,192,0.8) 75%);
    content: '';
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: -1;
}

figure.effect-visible-text h2 {
    font-size: 1.8rem;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    width: 100%;
    opacity: 1;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    margin: 0;
    text-align: left;
}

figure.effect-visible-text p {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 0;
    width: 100%;
    opacity: 1;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 1.5;
    text-align: left;
}

.media-boxes {
    max-width: 930px;
    margin: 0 auto;
}

.media { 
    margin-bottom: 35px; 
    align-items: flex-start;
}

.media-body { 
    display: flex;
    width: calc(100% - 100px);
}

.service-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    align-self: flex-start;
}

.tm-description-box { 
    padding: 20px 25px; 
}

.tm-mb-big { 
    margin-bottom: 130px; 
}

.tm-mb-medium { 
    margin-bottom: 90px; 
}

/* Add padding to the top of the About section */
#about {
    padding-top: 60px;
}

.btn-secondary {
    background-color: #E7A7C0;
    border-color: #E7A7C0;
    font-size: 1.1rem;
    padding: 12px 40px;
}

.btn-secondary:focus,
.btn-secondary:hover {
    background-color: #d898b0;
    border-color: #d898b0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.card {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #f9e3eb;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.card-header h5 {
    margin-bottom: 0;
}

.btn-link {
    font-weight: 400;
    color: #E7A7C0;
    text-decoration: none;
    background-color: transparent;
    border: 0;
    padding: 0.75rem 1.25rem;
    width: 100%;
    text-align: left;
}

.btn-link:hover {
    color: #d898b0;
    text-decoration: underline;
}

.card-body {
    padding: 1.25rem;
}

.collapse:not(.show) {
    display: none;
}

.accordion {
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .tm-albums-container { max-width: none; }
    .navbar-expand-sm .navbar-nav .nav-link { padding: 20px 40px; }
    .navbar-nav { margin-right: -40px; }
}

@media (min-width: 768px) {
    .tm-albums-container { max-width: 540px; }
}

@media (min-width: 992px){
    .tm-albums-container { max-width: none; }
    figure.effect-sadie h2 { bottom: 20%; }
}

@media (min-width: 1200px){
    .container { max-width: 1230px; }
    figure.effect-sadie h2 { bottom: 10%; }
}

@media (max-width: 1199px) {
    .tm-new-release {
        font-size: 1.1rem;
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (max-width: 991px) {
    .tm-welcome-section { height: 70vh; }

    .tm-about-col-left { margin-bottom: 20px; }
    .tm-about-text { padding: 50px; }

    .tm-advanced-box {
        font-size: 1rem;
        padding-right: 30px;
    }

    .tm-mt-big { margin-top: 60px; }
    .tm-mb-big { margin-bottom: 80px; padding-top: 60px;}
    .tm-mb-medium { margin-bottom: 40px; }

    .tm-tab-link { padding: 15px 25px; }
    .tm-tab-link .fa-2x { font-size: 1.8rem; }
    .tm-tab-link .tm-media-link { font-size: 1rem; }
	
	.tm-tab-links-container {
        flex: 0 0 100%;
        padding-right: 15px;
    }
    .tm-tab-content-container {
        flex: 0 0 100%;
        margin-top: 15px;
        padding-left: 15px;
    }
	
    .tm-media-2-icon { margin-right: 30px; }
    .tm-media-2 { padding: 35px 30px; }
    .tm-contact-col { flex-wrap: wrap; }
    .tm-contact-left {
        flex: 0 0 30%;
        margin-right: 0;
    }

    .tm-contact-middle {
        flex: 0 0 67%;
        margin-right: 0;
        max-width: none;
    }

    .tm-contact-right {
        flex: 0 0 100%;
        margin-top: 20px;
        max-width: none;
    }

    iframe { width: 100%; }
}

@media (max-width: 767px) {
    .tm-welcome-section { height: 60vh; }
    .tm-fa-big { font-size: 4em; }
    .tm-fa-mb-big { margin-bottom: 2rem; }
    .logo-text { font-size: 1.5rem; }
    .tm-site-description { font-size: 1.3rem; }

    .tm-albums-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .tm-contact-left,
    .tm-contact-middle {
        flex: 0 0 100%;
    }

    .tm-contact-middle {
        margin-top: 20px;
    }

    .tm-contact-middle,
    .tm-contact-right {
        padding: 35px 30px;
    }
}

@media (max-width: 575px) {
    .container { max-width: 540px; }
    
    .tm-fa-big { font-size: 3rem; }
    .tm-fa-mb-big { margin-bottom: 1.5rem; }
    .logo-text { font-size: 1.3rem; }
    .tm-site-description { font-size: 1.1rem; }
}

@media (max-width: 500px) {
    .media { 
        flex-direction: column; 
    }
    
    .media-body { 
        margin-top: 15px;
        width: 100%;
    }
    
    .service-img {
        width: 60px;
        height: 60px;
    }
}