.mk47-page {
padding: 140px 60px 80px;
width: 100%;
min-height: 100vh;
position: relative;
background-image: url('../assets/mk47-bg.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.mk47-page > * {
max-width: 1400px;
margin-left: auto;
margin-right: auto;
}
.mk47-header {
text-align: center;
margin-bottom: 80px;
}
.mk47-header h1 {
font-family: 'Cinzel', serif;
font-size: 3rem;
color: var(--gold);
margin-bottom: 15px;
}
.mk47-header p {
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--gray);
font-size: 1.2rem;
}
.mk47-content-section {
margin-bottom: 80px;
}
.mk47-content-section h2 {
font-family: 'Cinzel', serif;
color: var(--gold);
font-size: 2rem;
margin-bottom: 50px;
text-align: center;
}
.mk47-boxes {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-bottom: 40px;
}
.mk47-box {
position: relative;
background: var(--darker);
border: 2px solid rgba(212, 175, 55, 0.3);
border-radius: 15px;
padding: 50px 40px;
text-align: center;
cursor: pointer;
transition: all 0.4s;
min-height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
}
.mk47-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('../assets/luz-bg.jpg');
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
}
.mk47-box:first-child:hover::before {
opacity: 0.25;
}
.mk47-box:hover {
border-color: var(--gold);
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.mk47-box-content {
position: relative;
z-index: 1;
}
.mk47-box h3 {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: 1.5rem;
margin-bottom: 15px;
}
.mk47-box p {
color: var(--gray-light);
line-height: 1.6;
font-size: 0.95rem;
}
.mk47-box-full {
grid-column: 1 / -1;
min-height: 200px;
}
@media (max-width: 1200px) {
.mk47-boxes { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.mk47-page { padding: 120px 25px 60px; }
}