/* Main Page Index Styles */

.index-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    /* Or spacing if needed */
    font-family: 'Gowun Dodum', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    /* Adjust height as needed */
    background: url('/static/index/indexback.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    /* Optional: dark overlay for text readability */
    margin: 20px;
    padding: 8% 20%;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.hero-text-small {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-text-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text-sub {
    font-size: 1rem;
    color: #e0e0e0;
    margin-top: 1rem;
    font-weight: 300;
}

/* Status Bar Section */
.status-bar-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background-color: #706b69;
    /* Slight gray to differentiate? or white */
    width: 100%;
    position: relative;
    z-index: 10;
}

.status-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: transform 0.2s;

}

.status-item:hover {
    transform: translateY(-5px);
}

.status-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5d4037;
}

/* Intro Section */
.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 40px;
    width: 100%;
    background-color: #efe4dc;
    box-sizing: border-box;
}

.intro-text-box {
    flex: 1;
    max-width: 500px;
    color: #4e342e;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 0;
    /* Removed padding */
    background: none;
    /* Removed bg */
    box-shadow: none;
    /* Removed shadow */
}

.intro-img-box {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Tools Grid Section */
.tools-section {
    background-color: #95a0a7;
    padding: 40px 20px;
    width: 100%;
    margin: 0;
    /* Removed margin */
    border-radius: 0;
    /* Removed radius */
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.tools-title-icon {

    margin-right: 6px;
    vertical-align: middle;
}

.tools-title {
    font-family: "Ubuntu", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
     font-style: italic;
    color: #fff;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tool-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #eceff1;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-thumb {
    transform: scale(1.05);
}

.tool-card:active {
    transform: scale(0.98);
}

.tool-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tool-info {
    text-align: left;
}

.tool-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #455a64;
    display: block;
    margin-bottom: 4px;
}

.tool-status {
    font-size: 0.85rem;
    color: #78909c;
}

.tool-card-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

/* Footer Contact & Copyright */
.footer-contact-section {
    width: 100%;
    background-color: #37474f;
    padding: 10px 20px 30px;
    text-align: center;
    box-sizing: border-box;
}

.footer-contact {
    font-size: 1rem;
}

.footer-contact-label {
    color: #b0bec5;
    font-weight: 500;
}

.footer-contact-email {
    color: #80cbc4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-contact-email:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    color: #78909c;
    font-size: 0.85rem;
    padding-top: 5px;

}

.footer-copyright p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text-large {
        font-size: 2.5rem;
    }

    .status-bar-section {
        flex-wrap: wrap;
    }

    .intro-section {
        flex-direction: column-reverse;
        /* Text below image on mobile? or simple column */
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}