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

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    background-image: url('memphis-bg.svg');
    background-size: 50%;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}

body {
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    background: transparent;
    color: #000;
    overflow-x: hidden;
    position: relative;
}

header {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(226, 96, 226, 0.7);
    backdrop-filter: grayscale(1);
    border: 5px solid #00ffff;
    border-bottom: 8px dashed #ffff00;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 0 #ff0080;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #000;
    font-family: 'Righteous', cursive;
    text-shadow: 3px 3px 0 #00ffff, 6px 6px 0 #ffff00;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    padding: 8px 15px;
    background: #ffff00;
    border: 3px solid #000;
    transition: 0.1s;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

nav a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
    background: #00ffff;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #ffff00;
    border: 6px solid #ff00ff;
    box-shadow: 10px 10px 0 #00ffff, 10px 10px 25px rgba(0, 0, 0, 0.8);
    transform: rotate(-1deg);
    margin: 100px auto 20px;
    width: fit-content;
    max-width: 90%;
}

.hero h1 {
    font-size: 4.5rem;
    max-width: 900px;
    line-height: 1.1;
    margin: 0;
    font-family: 'Righteous', cursive;
    text-transform: uppercase;
    color: #ff00ff;
    text-shadow: 3px 3px 0 #000, 6px 6px 0 #00ffff;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
}

.hero h1 span {
    color: #00ffff;
    text-shadow: 3px 3px 0 #000, 6px 6px 0 #ff00ff;
}

.hero p {
    margin-top: 30px;
    max-width: 600px;
    font-size: 1.4rem;
    color: #000;
    font-weight: bold;
    text-shadow: 2px 2px 0 #ffff00;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.hero:hover {
    transform: translate(-5px, -5px) rotate(0deg);
    box-shadow: 15px 15px 0 #00ffff, 15px 15px 30px rgba(0, 0, 0, 0.8);
}

.cta {
    margin-top: 40px;
    display: inline-block;
    padding: 20px 45px;
    background: #ffff00;
    color: #000;
    font-weight: 900;
    border: 4px solid #000;
    text-decoration: none;
    transition: 0.1s;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 8px 8px 0 #ff00ff;
    font-family: 'Arial Black', sans-serif;
    position: relative;
    z-index: 3;
}

.cta:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #ff00ff;
}

.features {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.feature-box {
    background: #ffff00;
    padding: 35px;
    border: 6px solid #ff00ff;
    transition: 0.1s;
    position: relative;
    box-shadow: 10px 10px 0 #00ffff, 10px 10px 25px rgba(0, 0, 0, 0.8);
    transform: rotate(-2deg);
}

.feature-box:nth-child(2) {
    transform: rotate(1deg);
}

.feature-box:nth-child(3) {
    transform: rotate(-1.5deg);
}

.feature-box:hover {
    transform: translate(-5px, -5px) rotate(0deg);
    box-shadow: 15px 15px 0 #00ffff, 15px 15px 30px rgba(0, 0, 0, 0.8);
}

.feature-box h3 {
    margin: 0;
    color: #ff00ff;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
}

.feature-box p {
    margin-top: 15px;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

footer {
    padding: 40px;
    text-align: center;
    color: #ffff00;
    border-top: 8px dashed #ff00ff;
    border-bottom: 8px dashed #00ffff;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: grayscale(1);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 0 #ff00ff;
}
