
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: url('https://img.freepik.com/premium-photo/freshly-baked-bread-wheat-sprays-black-background_115919-77610.jpg?w=1920') no-repeat center center fixed;
	background-size: 100% 100%;
	padding-top: 60px;
}

.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 30px;
	margin-bottom: 40px;
}

.page-content {
	position: relative;
	margin-top: 5%;
	width: 100%;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 50px;
}

.card {
	display: flex;
	flex-direction: column;
	width: 300px;
	min-height: 420px;
	background: #0000;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: 0.5s ease-in-out;
	margin: 0;
}

.card:hover {
	width: 300px;
}

.card .imgBx {
	width: 100%;
	height: 240px;
	background: #2c3e50;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border-radius: 20px 20px 0 0;
}

.card .imgBx img {
	max-width: 90%;
	max-height: 90%;
	transition: 0.5s;
	border-radius: 20px;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}

.card .details {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 20px 20px;
	background: #34495e;
	width: 100%;
	min-height: 180px;
}

.card .details h3 {
	color: #ecf0f1;
	font-weight: 600;
	font-size: 1.2em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.card .details h3 span {
	font-size: 0.9em;
	font-weight: 300;
	opacity: 0.85;
	text-transform: none;
}

.card .details h4 {
	color: #bdc3c7;
	font-size: 1em;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 0;
	text-transform: none;
}

.card .details p {
	color: #95a5a6;
	font-size: 0.95em;
	opacity: 0.85;
	margin-bottom: 10px;
}

.card .details a {
	display: inline-flex;
	padding: 10px 25px;
	background: #fff;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	color: #2c3e50;
	border-radius: 5px;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.card .details a:hover {
	background: #3498db;
	color: #fff;
}

.size {
	display: flex;
	gap: 10px;
}

.size li {
	list-style: none;
	color: #fff;
	font-size: 0.9em;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #fff;
	cursor: pointer;
	font-weight: 500;
	opacity: 0.5;
}

.size li:hover {
	background: #fff;
	color: #ff009d;
	opacity: 1;
}

.card .details .group {
	margin-top: auto;
	width: 100%;
	display: flex;
	justify-content: center;
}

.card .details h2 {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 2em;
}

.card .details h2 sup {
	font-weight: 300;
}

.card .details h2 small {
	font-size: 0.75em;
}

.glowing-menu {
	display: none;
}

.glowing-menu a {
}

.glowing-menu a:hover {
}

footer {
	background-color: #2c3e50;
	color: white;
	text-align: center;
	padding: 20px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}

.footer-content {
	margin-bottom: 20px;
}

.footer-content a {
	color: #ecf0f1;
	text-decoration: none;
	margin: 0 10px;
	font-size: 16px;
	transition: color 0.3s;
}

.footer-content a:hover {
	color: #3498db;
}

p {
	font-size: 14px;
	opacity: 0.8;
}

.glow {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.glow-on-hover {
    width: 90%;
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    margin-bottom: 5px;
    transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.glow-on-hover:hover, .glow-on-hover:focus {
    animation: glowPulse 1s infinite alternate;
    background: linear-gradient(90deg, #2ecc71 0%, #3498db 100%);
    box-shadow: 0 0 24px 6px #2ecc71, 0 2px 8px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 8px 2px #2ecc71, 0 2px 8px rgba(52, 152, 219, 0.2);
    }
    100% {
        box-shadow: 0 0 24px 6px #2ecc71, 0 2px 8px rgba(52, 152, 219, 0.2);
    }
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #10182a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header-nav .button {
    color: #fff;
    background-color: transparent;
    padding: 0;
    text-decoration: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-nav .button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-nav .button i {
    font-size: 1.1em;
}

.site-title {
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 255, 0.7), 0 0 20px rgba(0, 0, 255, 0.5);
    margin-left: 20px;
    padding: 5px 0;
}
