/* 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'); } @font-face { font-family: 'Archivo SemiBold Expanded'; src: url('../fonts/Archivo_Expanded-SemiBold.ttf'); } :root { --color-orange: #EB5229; --color-orange-hover: #d14421; --color-green: #003828; --color-white: #ffffff; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } 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: var(--color-white); } .slogan { font-family: 'Luminaire Script'; font-weight: 400; font-size: 3rem; color: var(--color-white) } .social-links { display: flex; gap: 10px; font-family: 'Quicksand Regular'; } .content { display: flex; justify-content: center; align-items: center; height: 70vh; min-height: 400px; background-color: var(--color-green); position: relative; .logo { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0); z-index: 2; width: 100%; h1 { font-family: 'Archivo SemiBold Expanded'; text-align: center; text-transform: uppercase; margin: 0; position: relative; color: var(--color-orange); .text-marea { font-size: min(20vw, 55vh, 19rem); width: 100%; line-height: 1; margin-bottom: -0.167em; animation: fadeIn 0.1s linear 1s forwards; opacity: 0; } .text-moment { position: absolute; top: 100%; left: 0; font-size: min(14vw, 38.5vh, 13rem); width: 100%; line-height: .75; animation: fadeIn 0.1s linear 2s forwards; opacity: 0; } } } } .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: var(--color-green); padding: 10px; color: var(--color-white); font-family: 'Quicksand Light'; font-size: 0.75rem; width: 100%; height: 30vh; box-sizing: border-box; display: flex; justify-content: center; align-items: flex-end; padding: 2rem; position: relative; } .mobile-links { display: none; } /* 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: var(--color-green); 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: var(--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: var(--color-orange); 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: var(--color-white); font-family: 'Quicksand Regular', sans-serif; font-size: 1rem; color: var(--color-green); box-sizing: border-box; outline: none; } .story-form textarea { resize: vertical; min-height: 80px; } .story-form input::placeholder, .story-form textarea::placeholder { color: var(--color-orange); 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: var(--color-orange); font-family: 'Quicksand Regular', sans-serif; } /* Custom Slider */ .budget-slider { -webkit-appearance: none; width: 100%; height: 6px; background: var(--color-white); border-radius: 5px; outline: none; } .budget-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--color-orange); cursor: pointer; } .budget-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--color-orange); cursor: pointer; border: none; } .bottom-sheet-footer { margin-top: 2rem; text-align: center; } .send-btn { background-color: var(--color-orange); color: var(--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: var(--color-orange-hover); } @media (max-width: 768px) { .header { display: none; } .slogan { font-size: 2rem; margin-bottom: auto; } .content { flex-direction: column; height: 70dvh; position: relative; } .logo { width: 100%; } .footer { height: 30dvh; } .mobile-links { display: flex; flex-direction: column; gap: 5px; text-align: center; font-size: 1.25rem; } .bottom-sheet-content { padding: 2rem; } }