/* Import fonts from fonts directory */ @font-face { font-family: 'Quicksand Light'; src: url('../fonts/Quicksand-Light.ttf'); } @font-face { font-family: 'Quicksand Medium'; src: url('../fonts/Quicksand-Medium.ttf'); } @font-face { font-family: 'Quicksand Bold'; src: url('../fonts/Quicksand-Bold.ttf'); } @font-face { font-family: 'Quicksand Regular'; src: url('../fonts/Quicksand-Regular.ttf'); } @font-face { font-family: 'Quicksand Semibold'; src: url('../fonts/Quicksand-SemiBold.ttf'); } @font-face { font-family: 'Luminaire Script'; src: url('../fonts/Luminaire-Script-Regular.ttf'); } body { margin: 0; padding: 0; } main { position: relative; } .header { display: flex; justify-content: flex-end; padding: 2rem; position: absolute; top: 0; left: 0; right: 0; z-index: 1; width: 100%; box-sizing: border-box; color: white; } .slogan { font-family: 'Luminaire Script'; font-weight: 400; font-size: 3rem; color: white } .social-links { display: flex; gap: 10px; font-family: 'Quicksand Regular'; } .content { display: flex; justify-content: center; align-items: center; height: 80vh; min-height: 400px; background-color: #EB5229; position: relative; .logo { position: absolute; left: 50%; bottom: -20vh; transform: translate(-50%, 0); height: 40vh; z-index: 2; img, object, svg { height: 100%; display: block; } } } .content>*:not(.video-background):not(.logo) { position: relative; z-index: 1; } .video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; } .video-background iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.77vh; transform: translate(-50%, -50%); } .footer { background: #EB5229; padding: 10px; color: white; font-family: 'Quicksand Light'; font-size: 0.75rem; width: 100%; height: 20vh; box-sizing: border-box; display: flex; justify-content: center; align-items: flex-end; padding: 2rem; } .mobile-links { display: none; } @media (max-width: 768px) { .header { display: none; } .slogan { font-size: 2rem; margin-bottom: auto; } .content { flex-direction: column; height: 70vh; } .logo { width: 90%; img, object, svg { height: auto; width: 100%; } } .footer { height: 30vh; } .mobile-links { display: flex; flex-direction: column; gap: 5px; text-align: center; font-size: 1.25rem; } } /* Bottom Sheet Styles */ .bottom-sheet { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 9999; display: flex; justify-content: center; align-items: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .bottom-sheet.open { opacity: 1; pointer-events: auto; } .bottom-sheet-content { background-color: #003828; width: 100%; max-width: 800px; height: 85vh; border-top-left-radius: 20px; border-top-right-radius: 20px; transform: translateY(100%); transition: transform 0.3s ease; overflow-y: auto; padding: 2rem 6rem; box-sizing: border-box; color: white; font-family: 'Quicksand Regular', sans-serif; } .bottom-sheet.open .bottom-sheet-content { transform: translateY(0); } .bottom-sheet-header { position: relative; text-align: center; margin-bottom: 2rem; } #close-sheet-btn { position: absolute; top: -10px; right: -10px; color: #EB5229; font-size: 2rem; cursor: pointer; line-height: 1; } .sheet-title { margin: 0; line-height: 1.2; } .sheet-title span { font-family: 'Luminaire Script', cursive; font-weight: normal; font-size: 2.5rem; } .sheet-title { font-family: 'Quicksand Bold', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 1.5rem; } .sheet-subtitle { font-size: 0.9rem; font-family: 'Quicksand Light', sans-serif; line-height: 1.4; opacity: 0.9; } .story-form .form-group { margin-bottom: 1.5rem; text-align: left; } .story-form label { display: block; font-family: 'Quicksand Bold', sans-serif; font-size: 1rem; margin-bottom: 0.2rem; } .story-form .sub-label { display: block; font-family: 'Quicksand Light', sans-serif; font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.5rem; } .story-form .sub-label.mt-1 { margin-top: 0.5rem; margin-bottom: 0; } .story-form input[type="text"], .story-form input[type="email"], .story-form textarea { width: 100%; padding: 15px 20px; border-radius: 8px; border: none; background: white; font-family: 'Quicksand Regular', sans-serif; font-size: 1rem; color: #003828; box-sizing: border-box; outline: none; } .story-form textarea { resize: vertical; min-height: 80px; } .story-form input::placeholder, .story-form textarea::placeholder { color: #EB5229; opacity: 0.7; } .date-inputs { display: flex; gap: 10px; } .date-inputs input { flex: 1; text-align: center; } .budget-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; } .budget-value { color: #EB5229; font-family: 'Quicksand Regular', sans-serif; } /* Custom Slider */ .budget-slider { -webkit-appearance: none; width: 100%; height: 6px; background: white; border-radius: 5px; outline: none; } .budget-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #EB5229; cursor: pointer; } .budget-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #EB5229; cursor: pointer; border: none; } .bottom-sheet-footer { margin-top: 2rem; text-align: center; } .send-btn { background-color: #EB5229; color: white; border: none; border-radius: 8px; padding: 15px 20px; width: 100%; font-family: 'Quicksand Medium', sans-serif; font-size: 1.1rem; cursor: pointer; transition: background-color 0.2s ease; } .send-btn:hover { background-color: #d14421; }