﻿/* =====================================================
    STYLE HALAMAN LOGO & ARTI LOGO
   SMK TI Bali Global Badung
   ===================================================== */

/* Bagian tampilan logo */
.logo-display {
    text-align: center;
    margin: 40px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.logo-display img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
    transition: transform 0.5s ease;
}

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

.logo-display h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: #f1f5f9;
}

.logo-display p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Bagian arti/makna logo */
.logo-meaning {
    margin: 50px 0;
}

.meaning-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.meaning-item:hover {
    transform: translateX(10px);
    background: rgba(30, 41, 59, 0.7);
    border-left-color: #8b5cf6;
}

.meaning-item:nth-child(even) {
    border-left-color: #8b5cf6;
}

.meaning-item:nth-child(even):hover {
    border-left-color: #3b82f6;
}

.meaning-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.meaning-content h4 {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.meaning-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Bagian palet warna */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.color-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.color-item:hover {
    transform: translateY(-5px);
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.color-swatch.glory-red {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.color-swatch.celtic-blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.color-swatch.amber-gold {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.color-item h5 {
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.color-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Tampilan font */
.font-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.font-item {
    padding: 30px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    text-align: center;
}

.font-sample {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.font-sample.cinzel {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.font-sample.rajdhani {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.font-item h5 {
    font-size: 0.95rem;
    color: #3b82f6;
    margin-bottom: 8px;
}

.font-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Bagian Tri Hita Karana */
.tri-hita-karana {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.thk-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
}

.thk-item:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.thk-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
}

.thk-item h4 {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.thk-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

/* Responsif (biar tampilan aman di HP) */
@media (max-width: 768px) {
    .meaning-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .meaning-icon {
        margin: 0 auto;
    }
    
    .logo-display img {
        max-width: 200px;
    }
}

/* Mode terang (light mode) */
[data-theme="light"] .logo-display {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: rgba(59, 130, 246, 0.15);
}

[data-theme="light"] .logo-display h3 {
    color: #1e293b;
}

[data-theme="light"] .meaning-item {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .meaning-content h4 {
    color: #1e293b;
}

[data-theme="light"] .meaning-content p {
    color: #64748b;
}

[data-theme="light"] .color-item,
[data-theme="light"] .font-item {
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .color-item h5,
[data-theme="light"] .font-item h5,
[data-theme="light"] .font-sample {
    color: #1e293b;
}

[data-theme="light"] .thk-item {
    background: rgba(59, 130, 246, 0.05);
}

[data-theme="light"] .thk-item h4 {
    color: #1e293b;
}
