diff --git a/styles.css b/styles.css index 98dd65f..0a47a02 100644 --- a/styles.css +++ b/styles.css @@ -179,8 +179,7 @@ footer { font-size: 0.9em; } -/* card styles */ -/* Updated card styles with space theme */ +/* Old card styles */ section .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); @@ -191,23 +190,22 @@ section .cards { section .card { text-align: center; list-style: none; - background: linear-gradient(180deg, rgba(0, 0, 50, 0.9), rgba(10, 10, 100, 0.9), rgba(30, 30, 150, 0.9)); + background-color: rgba(46, 58, 95, 0.9); padding: 20px; - border-radius: 12px; - box-shadow: 0 5px 20px rgba(0, 0, 50, 0.8), 0 0 10px rgba(255, 255, 255, 0.1); /* Space glow effect */ - border: 1px solid #2e3a60; + border-radius: 10px; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8); + border: 1px solid #3a4971; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; - transition: background 0.5s ease, transform 0.4s ease, box-shadow 0.5s ease; + transition: transform var(--transition-speed), box-shadow var(--transition-speed); } section .card:hover { - transform: translateY(-8px); - background: linear-gradient(180deg, rgba(30, 30, 150, 0.9), rgba(40, 0, 100, 0.9), rgba(100, 0, 150, 0.9)); /* More intense hover gradient */ - box-shadow: 0 10px 30px rgba(0, 0, 100, 0.7), 0 0 20px rgba(255, 221, 85, 0.8); /* Enhanced glowing effect */ + transform: translateY(-5px); + box-shadow: 0 10px 30px rgba(255, 221, 85, 0.5); } section .card img { @@ -216,35 +214,32 @@ section .card img { object-fit: cover; border-radius: 50%; margin: 0 auto 15px; - box-shadow: 0 0 15px rgba(255, 221, 85, 0.5); /* Add a space-like glow */ + box-shadow: 0 0 10px rgba(255, 221, 85, 0.5); } section .card h3 { margin: 10px 0; - font-size: 1.4em; + font-size: 1.2em; font-weight: bold; - color: rgba(255, 221, 85, 1); - text-shadow: 0 0 15px rgba(255, 221, 85, 0.9); /* Glowing text effect */ + color: var(--accent-color); + text-shadow: 0 0 10px var(--accent-color); } section .card p { flex-grow: 1; - color: rgba(200, 220, 255, 0.8); + color: var(--text-color); margin-bottom: 10px; - text-shadow: 0 0 8px rgba(255, 255, 255, 0.2); /* Subtle glow on text */ } section .card::before { content: ""; position: absolute; - top: -20px; - right: -20px; - width: 60px; - height: 60px; - border-radius: 50%; - background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)); - box-shadow: 0 0 50px rgba(255, 255, 255, 0.5); - animation: spin 8s linear infinite; /* Adds a subtle spinning effect */ + top: 10px; + right: 10px; + width: 24px; + height: 24px; + background: url("path-to-cosmic-icon.svg") no-repeat center; + background-size: contain; } section .card .suit-icon { @@ -253,22 +248,8 @@ section .card .suit-icon { right: 10px; width: 24px; height: 24px; - opacity: 0.7; - transition: opacity var(--transition-speed); -} - -section .card:hover .suit-icon { - opacity: 1; /* Highlight the icon on hover */ -} - -/* Keyframes for spinning element */ -@keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } + background: url("path-to-suit-icon.svg") no-repeat center; + background-size: contain; } /* Form styling */