/* Custom styles to complement Tailwind */
html { font-size: 14px; }
@media (min-width: 768px)  { html { font-size: 15px; } }
@media (min-width: 1024px) { html { font-size: 16px; } }

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

/* Remove all shadows site-wide for a flatter design */
img, table, .shadow-none {
    box-shadow: none !important;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #00B8D4 0%, #2DD4BF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UI Mockup Tile in Hero */
.stat-tile {
    background-color: #F8FAFC; 
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

/* Hero section with a different background for students */
.hero-bg-student {
    background-color: #f0f9ff; /* A light blue to differentiate from employer page */
    background-image: url('images/gakuchikapeople.png'); /* Optional: a different hero image */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg-student::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5); /* A bit more overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.voices-section {
    background-color: #f0f9ff;
}
/* Voices section specific styling */
#voices .grid img {
    max-width: 150px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
    background-color: #fff;
}

