@import url('style.css');

/* Specific overrides for project-thawarattanamanee.php can be added below */

/* ============================================
   Enhanced Payment Section Styling
   ============================================ */
.payment-qr-section {
    position: relative;
}

.payment-qr-section .form-section-title {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.15));
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4af37;
}

.payment-qr-section .form-section-title i {
    color: #d4af37;
    font-size: 1.3rem;
}

.payment-qr-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.95));
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.payment-qr-info:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.qr-code-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-code-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.qr-code-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-code-image:hover {
    transform: scale(1.02);
}

.payment-details-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.9));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.payment-info-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(252, 252, 252, 1));
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.payment-info-item i {
    font-size: 1.6rem;
    color: #d4af37;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.payment-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.payment-label {
    font-size: 0.85rem;
    color: rgba(43, 34, 23, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.payment-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2217;
    letter-spacing: 1px;
    font-family: 'Sarabun', sans-serif;
}

.total-amount-display {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(184, 134, 11, 0.15));
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.total-amount-display:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 134, 11, 0.22));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.total-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(43, 34, 23, 0.8);
    letter-spacing: 0.5px;
}

.total-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
    font-family: 'Sarabun', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-qr-info {
        padding: 1.25rem;
    }
    
    .qr-code-wrapper {
        padding: 1rem;
    }
    
    .qr-code-image {
        max-width: 220px;
    }
    
    .payment-info-item {
        padding: 0.875rem 1rem;
    }
    
    .payment-value {
        font-size: 1.3rem;
    }
    
    .total-amount {
        font-size: 1.4rem;
    }
    
    .total-amount-display {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .qr-code-image {
        max-width: 180px;
    }
    
    .payment-value {
        font-size: 1.2rem;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
}

