.hero-section {
position: relative;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
} .hero-background {
position: absolute;
top: -20%;
left: 0;
width: 100%;
height: 140%;
z-index: 1;
will-change: transform;
}
.hero-bg-image {
width: 100%;
height: 100%;
object-fit: cover;
} .hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.35);
z-index: 2;
} .hero-content {
position: relative;
z-index: 10;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 2rem;
}
.hero-inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 5rem;
text-align: center;
} .hero-logo {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease-out 0.3s forwards;
}
.hero-logo img {
max-width: 350px;
width: 100%;
height: auto;
display: block;
} .hero-cta-wrapper {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease-out 0.6s forwards;
}
.hero-btn-primary {
font-family: var(--font-mono, 'DM Mono', monospace);
background-color: var(--color-secondary);
border: 2px solid var(--color-secondary);
color: #ffffff;
padding: 1rem 2.5rem;
font-size: 0.875rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
text-decoration: none;
display: inline-flex;
align-items: center;
border-radius: 4px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(135, 45, 47, 0.3);
}
.hero-btn-primary:hover {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(132, 74, 52, 0.4);
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 1024px) {
.hero-logo img {
max-width: 300px;
}
.hero-inner {
gap: 4rem;
}
}
@media (max-width: 768px) {
.hero-section {
min-height: 80vh;
}
.hero-content {
padding: 1.5rem;
}
.hero-inner {
gap: 3rem;
}
.hero-logo img {
max-width: 250px;
}
.hero-btn-primary {
padding: 0.75rem 1.5rem;
font-size: 0.8rem;
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.hero-logo img {
max-width: 200px;
}
.hero-inner {
gap: 2.5rem;
}
.hero-btn-primary {
padding: 0.7rem 1.25rem;
font-size: 0.75rem;
}
}