/* Custom Font Declaration */
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/source_sans_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* For better loading performance */
}

/* If you have multiple weights/styles, add them like this: */
/*
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/your-font-name-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/your-font-name-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #E3E3E3;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: none; /* Hidden since we removed it */
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main logo in content area */
.logo-main {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.logo-main:hover {
    transform: scale(1.05);
}

/* Main Content Styles */
.main-content {
    text-align: center;
    padding: 2rem 0;
    max-width: 600px;
    width: 100%;
}

h1 {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.subtitle {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
    font-weight: 400;
}

.coming-soon {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #dd3a5e;
    margin-bottom: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Navigation Links */
.links {
    margin-top: 3rem;
}

.links a {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block;
    margin: 0 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #009AA6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.links a:hover {
    background-color: #009AA6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Back Button */
.back-btn {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-btn:hover {
    background-color: #7f8c8d;
    transform: translateX(-2px);
}

/* Page Content Styles */
.page-content {
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-content h1 {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 3px solid #009AA6;
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.page-content h2 {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-left: 0.5rem;
    border-left: 4px solid #009AA6;
}

.page-content section {
    margin-bottom: 2rem;
}

.page-content p {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
    text-align: justify;
    color: #555;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content li {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 0.5rem;
    color: #555;
}

.page-content a {
    color: #14B8A6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #14B8A6;
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem 0;
    color: #7f8c8d;
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .links a {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-content {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .logo-main {
        height: 80px;
    }
    
    body {
        padding-bottom: 80px; /* Add space for fixed footer */
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .logo-main {
        height: 70px;
    }

    h1 {
        font-size: 1.8rem;
    }
    
    .page-content h1 {
        font-size: 1.6rem;
    }

    .page-content {
        padding: 1rem;
    }
    
    .page-content h2 {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    footer {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
}

/* Smooth transitions for better UX */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid #009AA6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .back-btn {
        display: none;
    }
    
    .links {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .page-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}