@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap'); 

body {
    background-color: #F3EFEE;
    color: #D85C3B;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
}


.container {
    max-width: 660px;
    margin: 0;
	text-align: left;
}

.giant {
    font-size: 120px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: -5px;
    margin-top: 0px;
	letter-spacing: -3px;
}

.intro {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.description {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
}

.links {
	padding-top: 10px;
    font-size: 18px;
	margin-bottom: 80px;

}

.links a {
	display: inline-block;
    color: #D85C3B;
    text-decoration: none;
    font-weight: 700;
	white-space: nowrap; /* Prevents extra spacing */
}

.links a:hover {
    text-decoration: underline !important;
	text-decoration-thickness: 3px; /* Controls underline thickness */
    text-underline-offset: 6px; /* Ensures correct position */
}

/* Make sure body and html take full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main container grows to push the footer down */
.container {
    flex: 1; /* Allows content to expand while keeping footer at bottom */
}

.footer {
    color: #D85C3B;
    text-align: left;
	margin-left: 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
	padding-top: 24px;
    align-items: center;
}

.giant-block {
    color: #D85C3B;
    text-align: left;
	margin-left: 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.giant-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.giant-text {
    font-size: 120px; 
    font-weight: 700;
	padding-bottom: 8px;
    text-transform: uppercase;
	line-height: 1; /* Reduce height */
    margin: 0 0 0 -5px;
	letter-spacing: -3px;
    display: inline-block;
}


.footer-text {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 1px; 
}

.footer-giant {
    font-size: 18px;
    font-weight: 700;
	padding-bottom: 8px;
    text-transform: uppercase;
	line-height: 1; 
    margin: 0; 
    display: inline-block; 
}



.image-block {
    width: 150px;
    height: 86px; 
	position: relative;
    top: -4px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}



/* Mobile-Friendly Styles */
@media (max-width: 600px) {
 
.container {
	max-width: 100%; 
	padding: 0px;
}
	

.intro, .description {
    font-size: 18px; 
	margin-top: 0px; 
}

.links {
    font-size: 16px; 
	margin-bottom: 80px;
}
	
.giant-text {
    font-size: 104px; 
}
	
.giant-block {
    flex-direction: column; 
    align-items: flex-start; 
    text-align: center; 
}
	
.giant-content {
    flex-direction: column; 
    align-items: center; 
}
	
.image-block {
	width: 100%;
	max-width: 260px;
	max-height: 146px;
	height: auto;
    margin-bottom: 12px; 
}
	
.image-block img {
    width: 100%; 
    height: auto;
}
	
	
	
.footer-content {
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}
	
.footer-text {
    align-items: center;
    text-align: center;
}
}






 /* Styling for the password modal */
    .password-modal {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0);
    background: white;
    padding: 2px 24px 24px 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 300px;
    box-shadow: none; 
    text-align: left;
    z-index: 1000;
}

/* Close button (X) */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
	color: #333;
}

/* Text styling */
.modal-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 32px;
	
}

/* Input container to align error message */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    width: 100%;
}

/* Error message styling */
.error-message {
    font-size: 12px;
    color: #BA4428;
    display: none; 
    margin-left: 2px;
}


/* Input field */
.modal-input {
    width: 290px;
    padding: 4px 0px; 
    font-size: 14px;
    border: 1px solid #ccc;
	color: #888;
    border-radius: 6px;
    outline: none;
    box-shadow: none;
    height: 32px;
	padding-left: 10px
}

/* Remove autofill styles (Chrome & Safari) */
.modal-input:-webkit-autofill,
.modal-input:-webkit-autofill:hover, 
.modal-input:-webkit-autofill:focus, 
.modal-input:-webkit-autofill:active {
    background-color: white !important;
    color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* Ensure password managers don't interfere */
.modal-input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
}

/* Force password text to be always visible */
.modal-input[type="password"] {
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

/* Button styling */
.modal-buttons {
    margin-top: 16px;
}

.modal-button {
    width: 101%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: black;
    color: white;
}

.modal-button:hover {
    background: #333;
}
   .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
}