/* Custom Fonts */
@font-face {
    font-family: 'Chalet London';
    src: url('Chalet-LondonNineteenSixty.woff2') format('woff2'),
         url('Chalet-LondonNineteenSixty.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chalet NewYork';
    src: url('Chalet-NewYorkNineteenSixty.woff2') format('woff2'),
         url('Chalet-NewYorkNineteenSixty.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chalet Paris';
    src: url('Chalet-ParisNineteenSixty.woff2') format('woff2'),
         url('Chalet-ParisNineteenSixty.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chalet Paris', 'Arial', sans-serif;
    background: #f8f9fa;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    background: white;
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    width: 300px;
    border-radius: 8px;
}

/* Company Info */
.company-info {
    text-align: center;
}

.company-name {
    color: #2b327c;
    font-family: 'Chalet London', 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.address {
    color: #2e337e;
    font-size: 23px;
    line-height: 1.1;
    padding: 2rem;
    border-radius: 8px;
    min-width: 250px;
    font-weight: 400;
}

.address div {
    margin-bottom: 0.5rem;
}

.address div:last-of-type {
    margin-bottom: 1rem;
}
.email-link {
    color: #2b327c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.1;
}

.email-link:hover {
    text-decoration: underline;
}


/* Login Section */
.login-section {
    display: flex;
    justify-content: center;
}

.login-btn {
    background: #2b327c;
    color: white;
    border: none;
    padding: 16px 40px;
    font-family: 'Chalet NewYork', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Footer */
.footer {
    background: #2b327c;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Chalet Paris', 'Arial', sans-serif;
    font-size: 16px;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    color: #fff;
    padding: 0;
    border-radius: 8px;
    min-width: 200px;
    min-height: 80px;
}
.phone-section,
.footer-left div,
.footer-right .phone-link,
.footer-right .email-link {
    font-weight: 400;
    font-size: 18px;
	
}
.footer-left {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.user-icon a,
.user-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right .email-link,
.phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-right .email-link:hover,
.phone-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    color: #2b327c;
    font-family: 'Chalet London', 'Arial', sans-serif;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Chalet Paris', 'Arial', sans-serif;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2b327c;
}

.submit-btn {
    width: 100%;
    background: #2b327c;
    color: white;
    border: none;
    padding: 12px;
    font-family: 'Chalet NewYork', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1a1f5a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        border: none;
        min-height: 100vh;
    }
    
    .main-content {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .logo-img {
        width: 320px;
        min-height: 200px;
    }
    
    .company-name {
        font-size: 26px;
    }
    
    .address {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        font-size: 22px;
        margin: 0 auto;
    }
    .email-link {
        font-size: 20px;
	}
    .login-btn {
        padding: 14px 36px;
        font-size: 18px;
    }
    
    .footer {
        flex-direction: column;
        gap: 1.5rem;
        padding: 30px;
        font-size: 15px;
    }
    
    .footer-left,
    .footer-right {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        text-align: center;

		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		min-height: inherit;
		margin: 30px;
		line-height: 4;
    }
    
	.footer-content {
		max-width: 100%;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		flex-direction: column;
		min-height: inherit;
	}
	.phone-section,
	.footer-left div, .footer-right .phone-link, .footer-right .email-link {
		font-weight: 400;
		font-size: 16px;
		line-height: 1.6;
	}
	.phone-section {
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem 0.5rem;
        gap: 1.5rem;
    }
    
    .logo-img {
        width: 280px;
        min-height: 180px;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .address {
        font-size: 16px;
        padding: 1rem;
    }
    .email-link {
        font-size: 16px;
	}
    
    .login-btn {
        padding: 12px 32px;
        font-size: 16px;
    }
    
    .footer {
        padding: 1rem;
        font-size: 14px;
    }
    
    .footer-left,
    .footer-right {
        padding: 1rem;
        font-size: 13px;
    }
}