﻿#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

:root {
    /* Define initial background colors */
    --bg-color-start: #65b1cc; /*Light blue */
    --bg-color-end: #a1d3e4;

    /*Darker blue */
}

html {
    /* Apply a base gradient */
    background: linear-gradient(to bottom, var(--bg-color-start), var(--bg-color-end));
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.background {
    /* Apply a base gradient */
    background: linear-gradient(to bottom, var(--bg-color-start), var(--bg-color-end));
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(120%);
}

.heroImage {
    position: relative;
    background-image: url('https://cdn.podhome.fm/podhome_hero_image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .heroImage::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)); /* Adjust the colors and opacity as needed */
        z-index: 1; /* Ensure the gradient is on top of the image */
    }

.heroImage-content {
    position: relative;
    z-index: 2; /* Ensure the content is on top of the gradient */
}

.navbar {
    display: flex align-content: center;
    justify-content: center;
    position: relative;
}

    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-color-start);
        opacity: 0.5;
        z-index: -1;
    }

.navbar-menu {
    flex-grow: 1 !important;
    flex-shrink: initial !important;
}


.custom-navbar-start {
    margin-left: 2%;
}

.custom-column-footer {
    text-align: center !important;
}


/* Custom CSS for Navigation.razor */
@media (min-width: 1025px) {
    .custom-navbar-start {
        margin-left: 30%;
    }

    .custom-column-footer {
        text-align: left !important;
        margin-left: 3rem !important;
    }
}

/* Custom CSS for Navigation.razor */
@media (min-width: 1770px) {
    .custom-navbar-start {
        margin-left: 32%;
    }
}

@media (min-width: 2000px) {
    .custom-navbar-start {
        margin-left: 35%;
    }
}

@media (min-width: 2400px) {
    .custom-navbar-start {
        margin-left: 39%;
    }
}

@media (min-width: 3000px) {
    .custom-navbar-start {
        margin-left: 44%;
    }
}

a {
    color: #404654;
    text-decoration: underline;
}

    a:hover {
        color: #404654;
        opacity: 0.8;
        text-decoration: none;
    }

.doc-card-min-height {
    min-height: 203px !important;
}

.doc-card-min-small {
    min-height: 209px !important;
}


/* Directly targeting ol and li */
ol, ul, li {
    margin-left: 1rem; /* Example margin */
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

ul {
    list-style-type: disc;
}

figure img {
    background-color: black;
    max-width: 700px;
}

.figure-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

    .responsive-iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.card:hover {
    background-color: #f0f0f0; /* Slightly off-white for the hover effect */
    transition: background-color 0.3s ease; /* Smooth transition for the background color change */
}

.menuPanel {

    height: auto;
    background-color: #f0f0f0;
    position: absolute;
    top: 100%; /* This positions the top of the featuresMenu right below the navbar-start */
    left: 50%; /* Center the element horizontally */
    transform: translateX(-50%); /* Adjust the element's position to truly center it */

    opacity: 0; /* Start hidden */
    visibility: hidden; /* Ensures the element is not interactive when hidden */
    transition: opacity 0.3s ease, visibility 0.3s; /* Smooth transition for opacity and visibility */
    border-radius: 8px; /* Slightly rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 10px; /* Add some padding */
    z-index: 1000; /* Ensure it's above other content */
}

    .menuPanel.show {
        opacity: 1; /* Fully visible */
        visibility: visible; /* Makes the element interactive */
    }


    .menuPanel a {
        display: block;
        padding: 5px;
        text-decoration: none;
        border-radius: 8px; /* Slightly rounded edges */
    }

        .menuPanel a:hover {
            background-color: #e0e0e0; /* Slightly off-white for the hover effect */
        }


.menuTitle {
    font-weight: 700;
    color: black;
}

.menuSubTitle {
    color: #404654;
}

.flex-container {
    display: flex;
    align-items: center; /* This centers the items vertically within the container */
}

.iconImage {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color:#fb1212
}

.iconImageSmall {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-left: 10px;
    color: #fb1212
}

.pricingCard {
    background-color: #f0f0f0;

    text-align: center;
    align-content: space-around;
    height: 125px;
}

@media (min-width: 1023px) {
    .subscribeButton {
        width: 168px !important;
        margin: 2px !important;
        padding: 0px;
        height: 50px;
    }
}

@media (max-width: 1023px) {
    .subscribeButton {
        width: 151px !important;
        height: 50px;
        margin: 2px !important;
        font-size: 0.9rem !important;
        padding: 0px;
    }
}

.featureImage {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.featureCard {
    max-width: 225px;
    max-height: 120px;
    padding: 0;
    margin: 10px;
}

.featureVideo {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px; /* Slightly rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */   
}

.homeVideo {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px; /* Slightly rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.home-review {
    margin: 1em;
    z-index: 1000;
    opacity: 0.85;
}

@media screen and (min-width: 1200px) {
    .custom-margin {
        margin-left: 3em;
    }

    .custom-margin_left-right {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .home-review {
        align-self: self-end;
        right: 2em;
        bottom: 1em;
        position: absolute;
        width: 450px;
        z-index:1000;
        opacity:0.85;
    }
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-50px); /* Increase the vertical movement */
    }

    80% {
        opacity: 1;
        transform: translateY(10px); /* Add a slight bounce effect */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.drop-in {
    animation: dropIn 0.8s ease-out; /* Increase the duration for a smoother effect */
}

#animated-word {
    position: relative;
}

    #animated-word::before {
        content: "";
        position: absolute;
        left: 2%;
        bottom: -8px;
        width: 100%;
        height: 12px;
        transform: skew(-12deg) ;
        background: rgba(255, 183, 15, 0.5);
        z-index: -1;
    }