body {
font-family: 'Montserrat', sans-serif;
background-color: #0A0A0A;
color: #E5E7EB;
}
.hero-section {
background-image: url('../img/back.png');
background-size: cover;
background-position: center;
position: relative;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.feature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(255, 215, 0, 0.1), 0 10px 10px -5px rgba(255, 215, 0, 0.04);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: #FFD700;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active-nav::after {
width: 100%;
}
input, textarea {
background-color: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #E5E7EB;
}
input::placeholder, textarea::placeholder {
color: #6B7280;
}
select {
background-color: rgba(255, 255, 255, 0.03);
color: #E5E7EB;
}
select option {
background-color: #1A1A1A;
color: #E5E7EB;
}
input:focus, textarea:focus {
border-color: #FFD700;
outline: none;
}
.gallery-item {
overflow: hidden;
}
.gallery-item img {
transition: transform 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
}
.custom-checkbox {
appearance: none;
-webkit-appearance: none;
width: 20px;
height: 20px;
border: 2px solid #FFD700;
border-radius: 4px;
outline: none;
cursor: pointer;
position: relative;
background-color: transparent;
}
.custom-checkbox:checked {
background-color: #FFD700;
}
.custom-checkbox:checked::before {
content: '✓';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #000000;
font-size: 14px;
}
.scroll-to-top {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-to-top.visible {
opacity: 1;
visibility: visible;
}