@import url("./base.css");
@import url("./layout.css");
@import url("./components.css");
@import url("./utilities.css");
@import url("./theme.css");
@import url("./about.css");


body 
{
    color: var(--accent-color-2);
}

header
{
    width: 100%;
    height: auto;
}

#header-container 
{
    width: 100%;
    height: 100%;
}

header img 
{
    width: 100%;
    height: 100%;
}

#section-6-container
{
    display: grid;
    align-items: center;
    background-color: rgb(0,0,0);
    color: var(--accent-color-2);
    font-weight: bold;
    z-index: 2;
    width: 100%;
    justify-content: center;
    max-width: 1800px;
    transform: scale(0.7);
    margin: 0 auto;
}

#certifications
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#section-6 img 
{
    max-width: 800px;
}

#links
{
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.standard-btn
{
    background-color: var(--secondary-color);
    background-color: transparent;
    border-radius: 5px;
    color: var(--accent-color-2);
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem !important;
    margin: 4px 2px;
    /* position: relative;
    top: 20%;
    left: 40%;
    transform: translate(-50%,-50%); */
    /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
    /* width: 50%;
    height: 100%; */
    max-width: 300px;
    cursor: pointer;
}

.section-container 
{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

img 
{
    width: 100%;
}

ul 
{
    list-style-type: none;
}

a 
{
    text-decoration: none;
}

a:hover 
{
    text-decoration: underline;
    color: var(--accent-color-2);
}

.section-container h1 
{
    text-align: center;
    padding: 40px;
    margin: 0;
}

#section-1
{
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: 0 -80px; */
}

#section-1-container
{
    width: 100%;
}

#section-1 .section-container 
{
    max-width: 1600px;
}

.words
{
    width: 100%;
    max-width: 12rem;
    padding: 12px;
    margin: 0 auto;
}


#section-2
{
    background-color: var(--theme-primary-color);
}

#section-2 p 
{
    font-family: trajanPro-Regular;
}

#section-2 .gallery-content, 
.section3-container, 
#section-6-container, 
.standard-btn
{
    box-shadow: var(--shadow-md);
}

.standard-btn:hover
{
    box-shadow: none;
}

#section-5, #section-7
{
    background-size: contain;
    background-repeat: repeat;
}

#section-2 img, #section-7 img
{
    border-radius: 5px;
}

#section-2 .gallery-content {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#section-2 .gallery-content:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

#section-2 .section-container, #section-7 .section-container,#section-3 .section-container
{
    padding: 30px;
}

#section-2 p 
{
    padding: 20px;
}

.hide 
{
    display: none;
}

.desc
{
    padding: 15px;
    text-align: center;
}

#section-3 
{
    position: relative;
    background-color: var(--theme-primary-color);
    color: var(--theme-accent-color-2);
    overflow: visible;
}

.section3-container{
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    background: rgba(0,0,0,0.78);
    padding: 18px 20px;
    border-radius: 12px;
}

.section-3-bg
{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

#pin
{
    position: absolute;
    width: 130px;
    bottom: clamp(120px, 18vw, 240px);
    left: 12%;
    transform: scale(0.82);
    z-index: 5;
    display: none;
    animation: blink 2s infinite;
    cursor: pointer;
}

/* #ravenMsg
{
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
    z-index: 2;
} */

@keyframes blink 
{
    0%
    {
        opacity: 1;
    }
    25%
    {
        opacity: 1;
    }
    50%
    {
        opacity: 0;
    }
    75%
    {
        opacity: 0;
    }
}

.section-3-bg img
{
    width: 100%;
    z-index: -1;
}

#testimonies
{
    max-width: 300px;
    margin: 0 auto;
}

#testimonies img
{
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

.carousel-text
{
    text-align: center;
}

#desktop-msg
{
    display: block;
    background: rgba(0,0,0,0.78);
    padding: 18px 20px;
    border-radius: 12px;
}

@media only screen and (min-width: 768px)
{
    #ravenMsg
    {
        position: absolute;
        bottom: clamp(110px, 17vw, 230px);
        top: 25%;
        left: 50%;
       transform: translate(-50%, -25%);
        width: clamp(280px, 32vw, 520px);
    }

    #desktop-msg
    {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 200ms ease;
    }

    #desktop-msg.is-open
    {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

#section-4 
{
    background-image: url("../img/Form\ background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#map-bg
{
    background-image: url("../img/Form2.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    z-index: 1;
    max-width: 1200px;
    height: 800px;
    margin: 0 auto;
    position: relative;
}


#mc_embed_signup
{
    position: relative;
    top: 13%;
    left: 0%;
    transform: translate(-50%,-50%);
    transform: scale(0.7);
    max-width: 600px;
    clear:left; 
    font:14px Helvetica,Arial,sans-serif; 
    width: 100%;
    /* box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

@media only screen and (min-width: 992px)
{
    #mc_embed_signup
    {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        margin: 0;
        width: 90%;
        max-width: 520px;
        padding: 30px;
    }
}

#section-4 h1 
{
    color: var(--accent-color);
    padding: 30px;
}

/* form 
{
    padding: 0px 50px;
    padding-bottom: 60px;
    border-radius: 5px;
    max-width: 650px;
    position: relative;
    left: 46%;
    transform:translateX(-50%);
} */

#section-5 .section-container
{
    padding: 20px;
}

#section-5 
{
    width: 100%;
}

#section-5 img
{
    border-radius: 5px;
    width: 100%;
}

/* #section-7 img 
{
    width: 100%;
} */

#section-7
{
    overflow: hidden;
}

#section-7 .section-container
{
    padding: 20px;
}

#puppy-litter-container
{
    width: 100%;
    overflow: hidden;

}
#developer
{
    background-color: #333333;
    margin: 30px 0;
    padding: 20px;
    font-size: 12px;
    margin: 0 auto;
}

footer 
{
    text-align: center;
    padding: 30px;
}

footer ul 
{
    padding: 0;
}

footer a 
{
    color: var(--accent-color-2);
}
