/* styles.css */

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Gruppo', sans-serif;
    background: linear-gradient(135deg, #2fa, #2faddd);
    color: #fff;
    text-shadow: 1px 1px 2px #f22, 1.5px 1.5px 3px #F00, 2px 2px 4px black;
    overflow-x: hidden;
  backdrop-filter: blur(8px);
  user-select: none;
  webkit-user-select: none;
  moz-user-select: none;
            
}

p {
    text-align: center;
    text-shadow: 1px 1px 2px #f22, 2px 2px 4px black;
    margin: 0.5em 0;
}

h1, h2, {
    text-align: center;
    text-shadow: 1px 1px 2px #f22, 1.5px 1.5px 3px #F00, 2px 2px 4px black, -1px 0 purple, 0 1px coral, 1px 0 #2faddd, 0 -1px indigo;";
    margin: 0.5em 0;
}

main {
    padding: 20px;
    }

#welcome {
  width: 75%;
}

/* Header - Glassmorphic Style */
.glassmorphic-header {
    font-family: 'Rubik', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 20px auto;
  text-shadow: 1px 1px 2px #2fa4, 1.5px 1.5px 3px #F00, 2px 2px 4px black;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: gradient-fade 5s infinite alternate;
}

.claymorphic-title {
    color: #f22;
    font-size: 2.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Subtitle Styling */
.subtitle {
    color: #dff;
    font-size: 1.2em;
    font-weight: lighter;
    opacity: 0.8;
}




.card {
    width: 250px;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px, auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

/* Glassmorphic Card Style */
.glassmorphic {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: gradient-slide 6s infinite alternate;
}

/* Claymorphic Card Style */
.claymorphic {
    background: #2fafaf;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #c7c7c7, -8px -8px 16px #2fa3;
    color: #333;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.claymorphic:hover {
    background: #2fa;
    box-shadow: 12px 12px 24px #2fafff, -12px -12px 24px #2faddd;
    transform: translateY(-10px);
}

/* Simulation Section */
.simulation-canvas {
    width: 100%;
    height: 550px;
    margin: 20px auto;
    padding: 20px auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: gradient-fade 5s infinite alternate;
}

/* Button Interactivity */
.interactive-button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
  text-shadow: 1px 1px 2px #2fa4, 1.5px 1.5px 3px #F00, 2px 2px 4px black;
    border-radius: 10px;
    background-color: #2fa;
    color: #2faddd;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.interactive-button:hover {
    background-color: #2fa4;
    transform: scale(1.05);
}

/* Footer Styling */
footer {
    background: #2fa4;
    color: black;
    padding: 15px 0;
    text-align: center;
  text-shadow: 1px 1px 2px blue, 1.5px 1.5px 3px #F00, 2px 2px 4px #2faddd;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 40px;
}

/* Animations */
@keyframes gradient-fade {
    0% {
        background: linear-gradient(135deg, #2fa, #2faddd);
    }
    100% {
        background: linear-gradient(135deg, #2faddd, #2fa);
    }
}

@keyframes gradient-slide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
