/* Upseek Brand Guideline 2025 - Complete CSS Implementation */

/* Typography Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Note: You'll need to include Satoshi font separately as it's not available on Google Fonts */

:root {
    /* Primary Colors */
    --primary-blue: #1472C2;
    --blue-light: #008AFD;
    --blue-dark: #042A44;
    --white: #FFFFFF;
    
    /* Secondary Colors */
    --yellow: #E0D35C;
    --green-light: #B6CC56;
    --teal: #02BFAE;
    --gray-lightest: #EDEDED;
    --gray-darkest: #1B2326;
    --gray-dark: #455259;
    --gray-medium: #9EAEB5;
    --blue-accent: #7890C0;
    
    /* Text Colors */
    --body-text: var(--gray-darkest);
    --light-text: var(--gray-dark);
    
    /* Gradients */
    --section-gradient: linear-gradient(135deg, var(--gray-lightest), var(--white));

    /* Theme Variables - Default Light Theme */
    --background-color: var(--white);
    --text-color: var(--body-text);
    --header-color: var(--blue-dark);
    --card-background: var(--gray-lightest);
    --card-text: var(--gray-darkest);
    --footer-background: var(--gray-lightest);
}

/* Base Typography */
body {
    font-family: 'Satoshi', 'Inter', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.5;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700; /* Bold */
    color: var(--header-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h6 {
    font-size: 1rem;
    line-height: 1.5;
}

p, li, span {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    color: var(--text-color);
}

a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--blue-light);
    text-decoration: underline;
}

/* Button Styles */
.btn-primary, .cta-button, .enroll-button, .custom-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(20, 114, 194, 0.25);
    text-decoration: none;
}

.btn-primary:hover, .custom-btn:hover {
    background-color: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(20, 114, 194, 0.35);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-header {
    background: var(--section-gradient);
    padding: 60px 0;
}

.contact-section {
    padding: 80px 0;
}

#contact-button{
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(20, 114, 194, 0.25);
    text-decoration: none;
}

.contact-info-card {
    background: var(--blue-white-light);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.custom-btn {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 10px 30px;
}

.custom-btn:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
}

.form-control:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 0.25rem rgba(107, 159, 255, 0.25);
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.brand-name {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.footer-link:hover {
    color: #4361ee;
}

.social-icons a {
    color: var(--gray-dark);
    margin: 0 0.5rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

footer{
    background-color: var(--footer-background);
}

/* Snackbar for submission response */
.contact-snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1060;
    left: 50%;
    bottom: 30px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-snackbar.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.contact-snackbar.error {
    background-color: #dc3545;
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
