/* styles.css */

/* Global styles for the body to ensure a full-screen centered layout */
@font-face {
    font-family: 'Gotham Book Italic';
    src: url('https://one.eziibuy.com/wp-content/uploads/2025/02/Gotham-BookItalic-1.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('https://one.eziibuy.com/wp-content/uploads/2025/02/Gotham-Medium-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Apply Gotham Medium globally */
body {
    font-family: 'Gotham Medium', sans-serif;
}

/* Styles for the calculator container */
/* Center-align the specific label */
label[for="investedAmount"] {
    display: block;
    text-align: center;
}

/* Smaller text for "REMAINING" */
.small-text {
    font-family: 'Gotham Book Italic', sans-serif;
    font-style: italic;
    font-weight: 200;
    font-size: 12px;
    color: rgb(190, 198, 84);
    margin-left: 4px;
    vertical-align: bottom;
}

.currency-symbol {
    font-size: 33px;
    color: rgb(205, 219, 0);
}

#roi, #roi5 {
    font-family: 'Gotham Book Italic', sans-serif;
    font-style: italic;
    font-weight: 200;
    font-size: 12px;
    color: rgb(190, 198, 84);
    margin-top: -6px;
    margin-left: 103px;
}

.calculator {
    font-family: 'Gotham Medium', sans-serif;
    background: url('investment-background.jpg') no-repeat center center / cover;
    padding: 21px;
    border-radius: 15px;
    /*text-align: center;*/
    border: 8px solid rgb(205, 219, 0);
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
    margin: 0 auto;
    height: 506px;
    width: 420px;
}

/* Heading Styling */
h1.ownership-calculator {
    font-size: 48px;
    font-weight: bold;
    color: rgb(205, 219, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Margin for input and output groups */
.input-group, .output-group {
    margin-bottom: 17px;
}

/* Label styling */
label {
    font-family: 'Gotham Medium', sans-serif;
    display: inline-block;
    font-weight: normal;
    color: #e7e4e4;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Styles for input elements */
input[type="text"], output {
    font-family: 'Gotham Medium', sans-serif;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 33px;
    /*font-weight: bold;*/
    color: #000000;
    background-color: rgb(205, 219, 0);
    height: 60px;
    text-align: center;
}

/* Focus state for input fields */
input[type="text"]:focus {
    font-family: 'Gotham Medium', sans-serif;
    outline: none;
  	border: 1px solid #000000;
    color: #000000;
    border-color: #000000;
    background-color: rgb(205, 219, 0);
    /*font-weight: bold;*/
    font-size: 33px;
}

/* Styling for output group */
.output-group output {
    font-family: 'Gotham Medium', sans-serif;
    line-height: 24px;
    width: 50%;
    background-color: #000000;
    color: rgb(205, 219, 0);
    font-size: 33px;
}

/* Button hover effect */
button:hover {
    background-color: #3a78d2;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 600px) {
	body {
    font-family: 'Gotham Medium', sans-serif;
       }
    .calculator {
        width: 90%;
        padding: 20px;
    }
    .elementor .elementor-hidden-mobile, 
    .elementor .elementor-hidden-phone {
        display: block;
    }
    input[type="number"], output {
        font-size: 14px;
    }
    .output-group output {
        font-size: 19px;
    }
	.currency-symbol {
		font-size: 19px;
	}
	.small-text {
    font-family: 'Gotham Book Italic', sans-serif;
    font-style: italic;
    font-weight: 200;
    font-size: 8px;
    color: rgb(190, 198, 84);
    margin-left: 0px;
    vertical-align: bottom;
}
    button {
        font-size: 14px;
    }
}
