h1{
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-size: 100pt;
}

h2{
    font-size: 30pt;
}

.FlexImgContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.roundImg{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

a{
    cursor: pointer;
    color: black;
    text-decoration: none;
}

:root {
    --primary-color: #7D8D86;
    --secondary-color: #BCA88D;
    --accent-color: #3E3F29;

    --text-dark: #3E3F29;
    --text-light: 7D8D86;

    --body-gradient-light: #7D8D86;
    --body-gradient-dark: #BCA88D;

    --bg-gradient: linear-gradient(135deg, var(--body-gradient-light) 0%, var(--body-gradient-dark) 100%);
    --bf-rad-gradient: radial-gradient(circle at 20% 50%, #3e3f2969 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #393f2963 0%, transparent 50%);

    --hero-bg: rgba(255, 255, 255, 0.95);

    --box-shadow-color: #3e3f2923;
    --box-shadow-color-light: #bca88d71;
    

    --tc-border: #3e3f2923;
    --tc-border-active: #bca88d71;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: var(--bg-gradient);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bf-rad-gradient);
    pointer-events: none;
}

.main-container {
    position: relative;
    z-index: 1;
    padding: 3rem 1rem;
}

.hero-section {
    background: var(--hero-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px var(--box-shadow-color);
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-family: 'Oxanium', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: black;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-align: center;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.coming-soon-badge {
    display: block;
    background: var(--bg-gradient);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 2rem auto;
    width: fit-content;
    box-shadow: 0 4px 15px var(--box-shadow-color-light);
}

.contact-prompt {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.team-section {
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--tc-border);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--tc-border-active);
}

.team-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.roundImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--body-gradient-light);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.team-card:hover .roundImg {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem 0;
    text-align: center;
}

.team-email {
    font-size: 0.95rem;
    text-align: center;
}

.team-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.team-email a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

div.carousel-item {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat no-repeat;
    width: 100%;
    height: 300px;
}


/* Tablet and up */
@media (min-width: 768px) {
    div.carousel-item {
        height: 400px;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    div.carousel-item {
        height: 500px;
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    div.carousel-item {
        height: 600px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
}