@import url("ffstyle.css");

body { overflow-x: hidden; overflow-y: auto; }

.btn-custom-yellow {
	margin-bottom: .6rem;
	padding: .7rem 3rem;
}

input[type="date"] {
    position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: auto; height: auto;
    color: transparent; background: transparent;
    cursor: pointer;
}
/* ===============================================
	1.HEADER INNER PAGE
=============================================== */
.inner-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--ff-light-yellow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible !important; 
    z-index: 10; 
}

.inner-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
}

.inner-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1; 
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 8vh;
    width: 100%;
}

/* ===============================================
	2.ADMISSION INFO
=============================================== */
.section-admission-info {
    padding: 3rem 0;
}

.adm-table-card {
    background-color: var(--ff-yellow);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    width: 100%;
}

.adm-table {
    width: 100%;
	height: 100%;
    border-collapse: collapse; 
}

.adm-table td {
    padding: 1.5rem 3rem;
    width: 50%; 
}

.adm-table tr td {
    border-bottom: 4px dotted var(--ff-orange);
}

.adm-table tr:last-child td {
    border-bottom: none;
}

.adm-table td:first-child {
    border-right: 4px dotted var(--ff-orange);
}

@media (max-width: 991px) {
	.adm-table td {
	  padding: 1.2rem 1rem;
	}
    .col-lg-6:last-child .adm-col-wrapper {
        margin-bottom: 0;
    }
}

/* =========================================
   3.LOCATION
========================================= */
.section-location {
    padding-bottom: 5rem;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3rem; 
}

@media (max-width: 991px) {
    .location-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .map-wrapper {
        min-height: 300px;
    }
    
    .location-content {
        text-align: center; 
    }
	
	.location-buttons {
		gap: 1rem;
	}
}

/* =========================================
   4.HEADLINE - PURPLE
========================================= */
.section-purple-headline {
    background-color: #7373be; /* Purple */
    padding: 5rem 0; 
    overflow: hidden;
    
    /* Center Content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.headline-media {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   5.GOOGLE FORM
========================================= */
.section-form {
    background-color: var(--ff-purple); 
}

.form-inner-box {
    background-color: var(--ff-yellow); 
    border-radius: 50px 50px 0 0;
    padding: 4rem 5rem; 
}

.form-control-custom {
    border-radius: 30px;
    border: 2px solid transparent;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.form-control-custom:focus {
    background-color: #fff;
    border-color: var(--ff-brown);
    box-shadow: none;
}

/* Submit Button Disabled State */
#submitButton:disabled {
    background-color: var(--ff-brown);
    color: var(--ff-light-yellow);
    cursor: not-allowed;
    border: none;
	border-radius: 30px;
}

.custom-radio .form-check-input {
    width: 2em;
    height: 2em;
    margin-top: 0; /* Reset default margin */
    border: 2px solid var(--ff-brown); /* Default border color */
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* 2. Checked State (Orange) */
.custom-radio .form-check-input:checked {
    background-color: var(--ff-orange);
    border-color: var(--ff-orange);
    /* Bootstrap uses a background-image for the white dot. 
       This keeps it visible on top of the orange. */
}

/* 3. Focus State (Remove Blue Glow, Add Orange Glow) */
.custom-radio .form-check-input:focus {
    border-color: var(--ff-orange);
    box-shadow: 0 0 0 0.25rem rgba(240, 91, 50, 0.25); /* Faint orange ring */
}

/* 4. Align Label Text */
/* Since the button is big (2em), we need to vertically align the text */
.custom-radio .form-check-inline {
    display: inline-flex;
    align-items: center;
    margin-right: 1.5rem; /* Space between "Boy" and "Girl" blocks */
}

.custom-radio .form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    color: var(--ff-brown);
}

#submitButton {
    /* 1. Base State (Light Yellow) */
    background-color: var(--ff-light-yellow); 
    color: var(--ff-brown);
    border: none;
	border-radius: 30px;
	padding: .7rem 0;
}

/* 2. Hover State (Enabled) */
#submitButton:hover:not(:disabled) {
    background-color: var(--ff-brown); 
	color: var(--ff-light-yellow)
}

/* 3. Disabled State */
/* (When Captcha is empty or incorrect) */
#submitButton:disabled {
    background-color: rgba(255, 255, 255, 0.8); 
    color: rgba(87, 61, 42, 0.5);
    cursor: not-allowed;
    box-shadow: none;
	border-radius: 30px;
}

/* ===============================================
	5.1 - LAPTOP / DESKTOP VIEW
=============================================== */
@media (min-width: 1200px) {
	.form-inner-box p {
		max-width: 550px;
	}
}

/* ===============================================
	5.2 - TABLET VIEW
=============================================== */
@media (min-width: 768px) and (max-width: 1279px) {
	.form-inner-box {
		padding: 4rem 2rem;
	}
}

/* ===============================================
	5.3 - MOBILE VIEW
=============================================== */
@media (max-width: 767px) {
	.form-inner-box {
        padding: 3rem 1.5rem;
    }
}





/* ===============================================
	5.1 - LAPTOP / DESKTOP VIEW
=============================================== */
@media (min-width: 1200px) {}

/* ===============================================
	5.2 - TABLET VIEW
=============================================== */
@media (min-width: 768px) and (max-width: 1279px) {}

/* ===============================================
	5.3 - MOBILE VIEW
=============================================== */
@media (max-width: 767px) {}


