Spaces:
Running
Running
File size: 1,426 Bytes
9d462e8 f4327e1 0bab959 49a34be 0bab959 368ad10 cb6c699 f4327e1 193223f 0bab959 fdcc364 193223f cb6c699 9d462e8 fdcc364 193223f 9d462e8 f4327e1 cb6c699 f4327e1 0bab959 cb6c699 f4327e1 0bab959 cb6c699 f4327e1 cb6c699 f4327e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
/* Custom styles */
:root {
--primary-blue: #1a365d;
--secondary-blue: #2c5282;
--accent-gold: #d69e2e;
--light-gold: #f6e05e;
--dark-blue: #1a202c;
--house-red: #e53e3e;
--house-blue: #3182ce;
--house-green: #38a169;
--house-yellow: #d69e2e;
}
.text-accent-gold {
color: var(--accent-gold);
}
body {
overflow-x: hidden;
padding-top: 80px;
color: var(--dark-blue);
}
/* Ensure hero section starts below navbar */
.hero-image {
margin-top: 80px;
min-height: calc(100vh - 80px);
}
@media (min-width: 768px) {
.hero-image {
margin-top: 80px;
min-height: calc(100vh - 80px);
}
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Button hover effects */
.btn-hover-effect {
transition: all 0.3s ease;
background-color: var(--accent-gold);
color: white;
}
.btn-hover-effect:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
background-color: var(--light-gold);
}
/* Responsive typography */
@media (max-width: 640px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.25rem;
}
}
/* Animation for buttons */
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.pulse-animation:hover {
animation: pulse 1.5s infinite;
} |