/* 
Theme Name: Morrison
Theme URI: https://www.morrisonsites.com
Author: Daniel Morrison Cook
Description: Morrison Sites.
Version: 2.0
*/

/* Gotham */
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/book.woff2') format('woff2');
    font-weight: 300;
    font-style: light;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/bold.woff2') format('woff2');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/black.woff2') format('woff2');
    font-weight: 900;
    font-style: bolder;
}

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

body {
    font-family: 'Gotham', sans-serif;
    background-color: white;
    color: black;
    overflow-x: hidden;
}

/* Business Card */
.card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.business-card {
    padding: clamp(.5rem, 3vw, 1rem);
    aspect-ratio: 1.75;
    width: clamp(500px, 45vw, 550px);
    height: auto;
    box-shadow: 0 1px 5px rgb(141, 141, 141);
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card .content {
    position: relative;
    z-index: 1;
    transition: transform 0.3 ease;
    width: 100%;
}

.business-card:hover .content {
  transform: translateZ(30px);
}

.business-card:hover {
    box-shadow: 0 5px 20px 5px #00000044;
}

.business-card .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}

.top {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: 2%;
}

.top img {
    border: 3px solid black;
    padding: 7px;
    width: 65%;
    user-select: none;
    pointer-events: none;
}

.business-card a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    line-height: clamp(1.25rem, 2vw, 1.75rem);
    font-size: clamp(.9rem, 1.5vw, 1.25rem);
}

.business-card h1{
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(1.5rem, 2vw, 3.5rem);
    
}

.business-card h2 {
    text-transform: uppercase;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    line-height: .75;
}

@media (max-width: 350px) {
    .bottom ul {
        display: none;
    }
}

.business-card h3 {
    font-weight: 500;
    letter-spacing: .1rem;;
    font-size: clamp(.75rem, 1.75vw, 1.25rem);
}

.bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 2%;
}

.bottom .left {
    margin-top: auto;
}

.bottom a {
    color: black;
    text-decoration: none;
}

.bottom ul {
    list-style: none;
}

.bottom ul li {
    text-align: right;
    text-transform: uppercase;
    padding-top: clamp(6px, 1vw, 8px);
}

.bottom ul li:first-child {
    padding-top: 0;
}

/* Contact */
.contact button {
    background-image: linear-gradient(to right, #232526 0%, #414345  51%, #232526  100%);
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
}
         
.contact button:hover, .contact button:active, .contact button:focus {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.contact form {
    width: 75%;
}

@media (max-width: 768px) {
    .contact form {
        width: 100%;
    }
}
         

/* Footer */

footer {
    text-align: center;
    font-size: 0.8rem;
    background-color: rgb(245,245,245);
    bottom: 0;
    width: 100%;
    padding: 3rem 0rem;
}

footer img {
    padding: 15px;
}